Skip to content

A dart package for easy implementation of OTP count down.

License

Notifications You must be signed in to change notification settings

hiteshgarg002/otp_count_down

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.
    },
);

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.