dart_form_textfield 0.0.2 copy "dart_form_textfield: ^0.0.2" to clipboard
dart_form_textfield: ^0.0.2 copied to clipboard

A new Flutter package.

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;
            },
          ),
        ],
      ),
    );
  }
}

Additional information #

TODO: Flutter TextFormField.

1
likes
120
points
23
downloads

Publisher

unverified uploader

Weekly Downloads

A new Flutter package.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on dart_form_textfield