flutter-bloc-forms
Installation
SKILL.md
Form Architecture with BLoC
- Manage form state in a dedicated
FormBloc— NOT in widgetsetState - Each form field maps to a property in the BLoC state
- Validate on field change (real-time) or on submit (batch) depending on UX requirements
- Emit
FormSubmitting,FormSuccess,FormErrorstates for submission flow
Form Events
FieldChanged(field, value)— update a single field in stateFormSubmitted— trigger validation and submissionFormReset— clear all fields and errors