TODO: This package mostly use for apply validation in your project.
Features
Getting started
TODO: List prerequisites and provide or point to information on how to start using the package.
Usage
TODO: class MyApp extends StatefulWidget { const MyApp({Key? key}) : super(key: key);
@override
State<MyApp> createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
@override
Widget build(BuildContext context) {
return Scaffold(
backgroundColor: Colors.white,
body: Padding(
padding: const EdgeInsets.symmetric(horizontal: 20),
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
TextFormField(
,
),
],
),
),
);
}
}
to /example
folder.
const like = 'sample';
Additional information
TODO: This package mostly use for apply validation in your project.