Skip to content

Commit 33b14de

Browse files
chore(release): 9.0.0
1 parent bce51df commit 33b14de

File tree

3 files changed

+34
-2
lines changed

3 files changed

+34
-2
lines changed

CHANGELOG.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,35 @@
1+
## [9.0.0]
2+
3+
### BREAKING CHANGES
4+
5+
* [Improve autovalidateMode](https://github.com/flutter-form-builder-ecosystem/flutter_form_builder/pull/1232)
6+
* On FormBuilderField, `autovalidateMode` change default from `AutovalidateMode.onUserInteraction` to `AutovalidateMode.disabled`
7+
* [Refactor FormBuilderField](https://github.com/flutter-form-builder-ecosystem/flutter_form_builder/pull/1238)
8+
* Add widget to remove decoration property from core. Now exist two field widgets:
9+
1. `FormBuilderField`: Refactored. Now don't included decoration property or references to this property
10+
2. `FormBuilderFieldDecoration`: New. Like the old `FormBuilderField`
11+
* [Remove FormBuilderCupertinoSegmentedControl](https://github.com/flutter-form-builder-ecosystem/flutter_form_builder/pull/1240)
12+
* Remove `FormBuilderCupertinoSegmentedControl` field. Included on [form_builder_cupertino_fields](https://pub.dev/packages/form_builder_cupertino_fields)
13+
* Update custom fields example without cupertino widgets
14+
* Remove cupertino icons dependency
15+
* Update intl version to 0.18.0
16+
* Update constraints to Flutter 3.10
17+
* Update constraints to Dart 3
18+
19+
### Features
20+
21+
* **NEW** Add errors getter on `FormBuilder`. Can get all errors on form from formKey
22+
* Improve examples
23+
* Add gifs to readme
24+
* `FormBuilderSlider`: Able custom widgets max, min and value
25+
* `FormBuilderTextField`: Add `contentInsertionConfiguration` property
26+
27+
### Fixes
28+
29+
* Improve FormBuilder rebuild. Now only rebuild at same time the field that user touch, not all touched fields
30+
* Verify error fields on form validation
31+
* `FormBuilderDropdown`: Improve widget and solved assert error with initialValue (issue closed after 2 years and 5 months)
32+
133
## [9.0.0-dev.3]
234

335
### BREAKING CHANGE

example/pubspec.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ packages:
6060
path: ".."
6161
relative: true
6262
source: path
63-
version: "9.0.0-dev.3"
63+
version: "9.0.0"
6464
flutter_lints:
6565
dependency: "direct dev"
6666
description:

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: flutter_form_builder
22
description: This package helps in creation of forms in Flutter by removing the boilerplate code, reusing validation, react to changes, and collect final user input.
3-
version: 9.0.0-dev.3
3+
version: 9.0.0
44
repository: https://github.com/flutter-form-builder-ecosystem/flutter_form_builder
55
issue_tracker: https://github.com/flutter-form-builder-ecosystem/flutter_form_builder/issues
66
homepage: https://github.com/flutter-form-builder-ecosystem

0 commit comments

Comments
 (0)