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 113 form_bloc issues
Sort by recently updated
recently updated
newest added

is there a way to correct this? I have these data in the bloc `final role = SelectFieldBloc(items: [ 'Client', 'Owner' ], validators: [ FieldBlocValidators.required, ]);` in the widget I...

We can not specify inputType (for instance I need instance inputType: TextInputType.number) Ideal for next version so that we can use this fantastic component.

i add suggestions to TextFieldBloc , but it doesnt show on ui

Hi team I dont know , how to use SwitchFieldBlocBuilder() to show/hiden when Switch status in my case: SwitchFieldBlocBuilder( booleanFieldBloc: formBloc.halfcheck, body: Container( alignment: Alignment.centerLeft, child: Text('Half Day'), ), ),...

Hi, I can get OnTap or OnChanged and many others on TextFieldBlocBuilder, but nothing is available for SwitchFieldBlocBuilder to listen if the switch was pressed. I tried wrapping into a...

In `form_bloc` `0.12.x` we have: * `TextFieldBloc`: field for String values * TextField * `BooleanFieldBloc`: field for Boolean values * CheckBox * Switch * `InputFieldBloc`: generic field, supports any type,...

help wanted

Hi! I'm here to request a widget that makes it easy to integrate search via a drop down asynchronously, possibly with the find_dropdown package. I already manually added it to...

how do we set max and min lines that support multiline line input for textfileldbloc?

How to fill DropdownFieldBlocBuilder using API request I try but not working