great_form 0.0.5 copy "great_form: ^0.0.5" to clipboard
great_form: ^0.0.5 copied to clipboard

Flutter package with a custom Form widget. Enables you not to write repetitive code for your screen forms.

Great Form #

This is a custom Form Widget that allows to spend less time on creating the same forms all over the app. Adds an automatic validation and gaps between fields.

Features #

Getting started #

Run in terminal to add package to pubspec.yaml

flutter pub add great_form

Usage #

GreatForm(
fields:[
        GreatFormField(
        hintText: 'Email',
        validator: Validator.email,
    ),
    GreatFormField(
        hintText: 'Password',
        validator: Validator.password,
    ),
    GreatFormField(),
]
)

Contributing #

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

License #

MIT

3
likes
160
pub points
0%
popularity

Publisher

unverified uploader

Flutter package with a custom Form widget. Enables you not to write repetitive code for your screen forms.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on great_form