GiancarloCode
GiancarloCode
[form_bloc](https://giancarlocode.github.io/form_bloc/) is an easy form state management using BLoC pattern, separating the form state and business logic from the user interface. And provide wizard/stepper forms, asynchronous validation, dynamic and conditional...
Hello, this week I will work on a new version of form_bloc that will allow creating complex fields, which include filters, searches, in a very simple way, I cannot give...
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,...
By using [built_collection](https://pub.dev/packages/built_collection) we can prevent the user from making mutations to the collections of field blocs that use the blocs (form, list, and group), which would cause unexpected behaviors,...
## Proposal: Add to the super constructor: * `autoSubmit` : by default false, * `autoSubmitDebounceTime` by default 1000 milliseconds. when you set `autoSubmit` to `true`, `submit` will be called when...
`CalculatedFieldBloc` would be a `FieldBloc` that subscribes to others `FieldBlocs` and applying a function based on the states of the others `FieldBlocs` to set their value.