rshrc / flutter_otp_timer

Flutter OTP Timer Widget

Home Page:https://pub.dev/packages/flutter_otp_timer

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

flutter_otp_timer

Get easy otp timer in your app

Usage

Import package:flutter_otp_timer/flutter_otp_timer

Example:

import 'package:flutter/material.dart';
import 'package:flutter_otp_timer/flutter_otp_timer.dart';

void main() {
  runApp(MyApp());
}

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text("Otp Timer"),
        centerTitle: true,
      ),
      body: Center(
        child: OtpTimer(
          duration: 60, // time till which the timer should animate
          radius: 10, // size of the circle
          timeTextSize: 16, // time text inside the circle
        ),
      ),
    );
  }
}

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.

About

Flutter OTP Timer Widget

https://pub.dev/packages/flutter_otp_timer

License:MIT License


Languages

Language:Dart 100.0%