sms_otp_autofill 0.2.2 copy "sms_otp_autofill: ^0.2.2" to clipboard
sms_otp_autofill: ^0.2.2 copied to clipboard

SMS OTP Auto Fill is a Flutter package designed to simplify the process of handling OTP received via SMS.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:sms_otp_example/home_page.dart';

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

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'SMS OTP Auto Fill Demo',
      theme: ThemeData(
        colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
        useMaterial3: true,
      ),
      home: const OtpReceiverView(),
    );
  }
}
5
likes
160
points
8
downloads

Publisher

unverified uploader

Weekly Downloads

SMS OTP Auto Fill is a Flutter package designed to simplify the process of handling OTP received via SMS.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

path

More

Packages that depend on sms_otp_autofill