Last updated:
0 purchases
otp count down
otp_count_down #
Easily implement the count down timer in Flutter Application.
Usage #
Import package:otp_count_down/otp_count_down.dart
Example:
import 'package:otp_count_down/otp_count_down.dart';
OTPCountDown _otpCountDown; // create instance
final int _otpTimeInMS = 1000 * 5 * 60; // time in milliseconds for count down
_otpCountDown = OTPCountDown.startOTPTimer(
timeInMS: _otpTimeInMS, // time in milliseconds
currentCountDown: (String countDown) {
print("Count down : $countDown"); // shows current count down time
},
onFinish: () {
print("Count down finished!"); // called when the count down finishes.
},
);
copied to clipboard
You will find links to the API docs on the pub page.
Getting Started #
For help getting started with Flutter, view our online
documentation.
For help on editing plugin code, view the documentation.
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.