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

DialogFieldBlocBuilder is a refactor code from DateTimeFieldBlocBuilderBase, allowing developers to implement their own "Dialog field"/"Picker field" such as DateRange , Color, or Map Location Pickers.

Please if you can provide Date/Time picker look like native iPhone (bottom spinner) would be great. Additionally, current Date picker does not provide hijri dates. It would be great if...

So I'm attempting to create an "onboarding" process and decided to use the "Wizard" style pattern. However, I keep getting this error when calling the `submit` method on the bloc....

@GiancarloCode Can you add MultiSelectFieldBloc for DropdownFieldBlocBuilder or make new DropdownGroupFieldBlocBuilder really need to use List for both initialValue and items. Will you change selected value to initialValue instead items...

I am using your example of dynamic list, may I know how to implement Multiline texfield inTextFieldBlocBuilder used in dynamic listing?

Here https://github.com/GiancarloCode/form_bloc/blob/master/packages/form_bloc/lib/src/blocs/multi_select_field/multi_select_field_bloc.dart#L158 Once we update items `items.contains(value)` is always `false` because `value` is a List and when we update items, value set to ` Optional.of([])` and we loose selected values

bug

Hi, Imagine we use the form_bloc for CRUD and I need to keep track of the "hidden" id field. What would be the best approach? 1. InputFieldBloc with the id...

Hey all, I'm trying to make a simple crud app using form_bloc and sqflite. I did the create, search and delete successfully. Now I'm stuck on updating data. Can anyone...

Hi, I have a select field bloc instantiated like below: `final startTime = SelectFieldBloc( items: [], validators: [FieldBlocValidators.required], asyncValidatorDebounceTime: Duration(milliseconds: 300));` In the contructor and its implementation: `AsyncBloc() { startTime.addAsyncValidators([_checkTimeSlotAvailability]);...

How to retain the textfields along with in the Dynamic list fields when the user goes back to the fields to edit them again?