form_bloc
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...
As you can see, by default using RadioButtonGroupFieldBlocBuilder places radio buttons in vertical axis. What I need is get the radio buttons to be next each other (horizontally). Like this:...
Could you give us an example how to test the form and the bloc separately in the form_bloc organization? Regards, Hans
I would recommend creating a dev branch and releasing this version in dev. It's not over but feedback is always welcome Changes: - fix example android build - feat a...
The wizard form doesn't allow processing Widgets that do not contain BlocFields. I'm trying to add a step to the wizard (for now we'll keep it as text), since the...
In flutter3.0 WidgetsBinding and SchedulerBinding are now non-nullable. To be backward compatible with flutter2.x and get rid of warning we need to implement this solution: https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-3.0.0#if-you-see-warnings-about-bindings
Fix #309. Fix to warning on the logs when using Flutter 3.0.0 with the flutter_form_bloc library
Fix #303
How I can add custom validation, to add validation errors in another language??
Test for #304
Hi everybody. I need to implement a questionnaire inside my app and I get questions and answers from a restful call, so when I initialize fields I don't know exactly...