The onboarding package contains a number of useful packages that can help you with building onboarding screens for your app.

Features

Will be added later.

Usage

class SmsOtp extends StatelessWidget {
  const SmsOtp({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      body: Center(
        child: Onboarding(
            appbarTitle = "Onboarding",
            bodyTitle = "Choose your onboarding feature.",
            firstBtnText = "SMS otp",
            secondBtnText = "Face recognition",
            thirdBtnText = "OCR reading",
            fourthBtnText = "Fingerprint Auth"
        ),
      ),
    );
  }
}