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

Flutter package with a custom Form widget.

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
0
points
22
downloads

Publisher

unverified uploader

Weekly Downloads

Flutter package with a custom Form widget.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on great_form