dart_form_textfield

Creator: coderz1093

Last updated:

0 purchases

dart_form_textfield Image
dart_form_textfield Images

Languages

Categories

Add to Cart

Description:

dart form textfield

TODO: Flutter TextFormField.
Features #
TODO: Flutter TextFormField.
Getting started #
TODO: Flutter TextFormField.
Usage #
TODO: Flutter TextFormField.
class MyForm extends StatelessWidget {
const MyForm({super.key});

@override
Widget build(BuildContext context) {
return Scaffold(
body: Column(
children: [
FlutterTextFormField(
fillColor: Colors.grey.shade300,
hintText: 'Flutter Textformfield',
prefixIcon: Icons.email,
validator: (value) {
if (value?.isEmpty ?? false || value == null) {
return 'Field is required.';
}
return null;
},
),
],
),
);
}
}
copied to clipboard
Additional information #
TODO: Flutter TextFormField.

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.