sms_otp 0.0.4 copy "sms_otp: ^0.0.4" to clipboard
sms_otp: ^0.0.4 copied to clipboard

A package for sms OTP container that you can modify variables.

The sms_otp package contains a number of useful containers that can help you with building sms/pin code screens for your app. The package contains container for title of pin screen, description text, phone number and pins container.

Features #

Getting started #

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

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      body: Center(
        child: SmsOtp(
            title: "Verification",
            textMargin: 40,
            text: "Enter the code sent to your number",
            phoneNumberMargin: 40,
            phoneNumber: "+90 123 456 789",
            pinHeight: 68.0,
            pinWidth: 64.0,
            btnMargin: 40,
            btnOnPressed: () => btnOnPressedFunction,
            btnText: "Enter",
            durationTimeMargin: 40,
            durationTime: 3,
            durationTimeOnEnd: () => durationTimeOnEndFunction
        ),
      ),
    );
  }
}
1
likes
140
pub points
19%
popularity

Publisher

unverified uploader

A package for sms OTP container that you can modify variables.

Homepage
Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on sms_otp