Skip to content

Instantly share code, notes, and snippets.

@nbnD
Created June 3, 2022 08:16
Show Gist options
  • Save nbnD/206d34df4eec97bffe8a8afba09ed6f5 to your computer and use it in GitHub Desktop.
Save nbnD/206d34df4eec97bffe8a8afba09ed6f5 to your computer and use it in GitHub Desktop.
Resend Otp timer
import 'package:flutter/material.dart';
import 'package:resend_otp_timer/otp_screen.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
home: const OtpScreen(),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment