form_bloc icon indicating copy to clipboard operation
form_bloc copied to clipboard

🔥 Dart and Flutter Package 🔥 Easy Form State Management using BLoC pattern 🔥 Wizard/stepper forms, asynchronous validation, dynamic and conditional fields, submission progress, serialization and mo...

Results 116 form_bloc issues
Sort by recently updated
recently updated
newest added

How can I get the success state after `emitSuccess` ? from the FormBloc instance?

I want to use `RangeSlider` and just update values `onChangeEnd` , I have a auto save feature , and only want to save when user ended slider changing ```dart RangeSlider(...

Steps : 1- submit form bloc 2- disconnect internet 3- push intrnet connaction page 4- pop form bloc page 5 - again submit form bloc (not working) Not working submit...

Is there a way to get a horizontal radio button group? Thanks.

What is the best way to show conditional text widgets (read only, not input) in a form when using this library? I have a requirement based on selections made in...

I have this bloc `ListFieldBloc ` for selecting image files. Is it possible to add a validator for ListFieldBloc? I need to require that at least n images are inserted...

I noticed that the suggestions feature for the TextFieldBloc is purposely disabled for the web. Is there a reason for this? I've used the TypeAhead widget elsewhere and it appears...

enhancement

@GiancarloCode I have tried creating a focus node for each field in the form but when these are embedded in widgets and new widgets with fields can be added I...

I would like to be able to iterate over the `FieldBloc`s that have been added to `FormBloc`. It looks like there is a private `_allFieldBlocsUsed` attribute on FormBloc. Is there...

I'm just familiar with form_bloc library and it is amazing, but when i want to mask my input text fields like phone text field, i don't access text field controllers...