flutter_custom_textfields 0.0.6+2
flutter_custom_textfields: ^0.0.6+2 copied to clipboard
A Flutter package with customizable text fields, regex validation, and OTP input support with leading/trailing icons.
import 'package:example/form_example.dart';
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Phone Input Demo',
theme: ThemeData(primarySwatch: Colors.blue, useMaterial3: true),
/// Please check the Github Repository under Form Example Class.
home: const FormExample(),
);
}
}