onboarding_features 0.0.1 copy "onboarding_features: ^0.0.1" to clipboard
onboarding_features: ^0.0.1 copied to clipboard

A package for onboarding that includes several onboarding packages.

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"
        ),
      ),
    );
  }
}
2
likes
140
points
1
downloads

Publisher

unverified uploader

Weekly Downloads

A package for onboarding that includes several onboarding packages.

Homepage
Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

face_recognition, fingerprint_auth, flutter, ocr_reading, sms_otp

More

Packages that depend on onboarding_features