dart_ng_forms 1.4.3
dart_ng_forms: ^1.4.3 copied to clipboard
Reactive Forms architecture in Flutter inspired by Angular's FormGroup/FormControl pattern and integration with TextEditingController.
Changelog #
All notable changes to this project will be documented in this file.
1.4.1 - 2025-12-19 #
BREAK CHANGES #
- Optimize state change methods in FormControl to prevent unnecessary notifications;
1.4.0 - 2025-12-19 #
BREAK CHANGES #
- Removed disabled, required and validators from
ControlValueAcessor; - Added Helper to lead with multiple dependencies input named
FormDeps; - Documented
TextControlBinder,ControlValueAcessorandFormRules
1.3.1 - 2025-12-18 #
FEATURE #
- Added markAs(Touched/Untouched) into FormControl and markAllAs(Touched/Untouched) into FormGroup;
0.3.0 - 2025-12-16 #
PROBLEMÁTIC #
- Updated
FormControlpropertiesisRequired,isDisabled, andisReadonlyto notify listeners when their values are changed.
0.2.9 - 2025-12-16 #
Changed #
- Updated
FormControlpropertiesisRequired,isDisabled, andisReadonlyto notify listeners when their values are changed.
0.2.8 - 2025-12-15 #
Changed #
- Added an alias
TextControlforFormControl<TextEditingValue, String>to simplify text control creation.
0.2.7 - 2025-11-28 #
Changed #
- Added the possibility to insert new validations into FormControl after its creation.
0.2.5 - 2025-06-30 #
Changed #
- revise README for clarity and structure; update features and examples.
0.2.3 - 2025-06-30 #
0.2.1 - 2025-06-18 #
Added #
- Added example usage for
FormControlandFormGroupin theexamplefolder.