otp_detection_flutter 0.0.1 copy "otp_detection_flutter: ^0.0.1" to clipboard
otp_detection_flutter: ^0.0.1 copied to clipboard

OTP auto detection in flutter application

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:otp_detection_flutter_example/mobile_number_verification.dart';


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

class MyApp extends StatelessWidget {
  const MyApp({super.key});
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter OTP Auto Detection',
      home: MobileNumberVerification(),
    );
  }
}