You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: CHANGELOG.md
+28-1
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,30 @@
1
+
# 10.0.0
2
+
3
+
## BREAKING CHANGES
4
+
5
+
* Set minimal Flutter version to 3.29.0
6
+
* Set minimal Dart version to 3.7.0
7
+
* refactor: #1456 remove deprecated code by @deandreamatias in https://github.com/flutter-form-builder-ecosystem/flutter_form_builder/pull/1465
8
+
* Solve issue #1456
9
+
* Remove `invalidateField` and `invalidateFirstField` methods from FormBuilderState. Use `fields[name]?.invalidate(errorText)` and `fields.first.invalidate(errorText)` instead.
10
+
*[FormBuilderTextField] Deprecate canRequestFocus property. Use `FocusNode.canRequestFocus.` instead.
11
+
* Assert on FormBuilderField.decoration.enabled property. Use FormBuilderField.enabled instead.
12
+
* Easy way! Only need execute `dart fix --apply` on your project to fix the following changes:
13
+
* Rename FormBuilderChoiceChip to FormBuilderChoiceChips.
14
+
* Rename FormBuilderFilterChip to FormBuilderFilterChips.
* feat: #1455 improve input decoration enabled property by @deandreamatias in https://github.com/flutter-form-builder-ecosystem/flutter_form_builder/pull/1464
22
+
* Solve issue #1455
23
+
* feat: #1458 improve autovalidate modes by @deandreamatias in https://github.com/flutter-form-builder-ecosystem/flutter_form_builder/pull/1460
24
+
* Solves issues #1364 and #1457
25
+
* feat: #1297 Improve focus behavior by @deandreamatias in https://github.com/flutter-form-builder-ecosystem/flutter_form_builder/pull/1453
26
+
* Solves issues #1296, #1290, #1301, #1304 and #1292
27
+
1
28
# 10.0.0-dev.3
2
29
3
30
## BREAKING CHANGES
@@ -7,7 +34,7 @@
7
34
* Remove `invalidateField` and `invalidateFirstField` methods from FormBuilderState. Use `fields[name]?.invalidate(errorText)` and `fields.first.invalidate(errorText)` instead.
8
35
*[FormBuilderTextField] Deprecate canRequestFocus property. Use `FocusNode.canRequestFocus.` instead.
9
36
* Assert on FormBuilderField.decoration.enabled property. Use FormBuilderField.enabled instead.
10
-
* Easy way! Only need execute `dart fix --apply` on your project.
37
+
* Easy way! Only need execute `dart fix --apply` on your project to fix the following changes:
11
38
* Rename FormBuilderChoiceChip to FormBuilderChoiceChips.
12
39
* Rename FormBuilderFilterChip to FormBuilderFilterChips.
Copy file name to clipboardexpand all lines: README.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -414,7 +414,7 @@ class _ClearFormBuilderTextFieldState
414
414
- Remove `invalidateField` and `invalidateFirstField` methods from FormBuilderState. Use `fields[name]?.invalidate(errorText)` and `fields.first.invalidate(errorText)` instead
415
415
-[FormBuilderTextField] Deprecate canRequestFocus property. Use `FocusNode.canRequestFocus.` instead
416
416
- Assert on FormBuilderField.decoration.enabled property. Use FormBuilderField.enabled instead
417
-
- Easy way! Only need execute `dart fix --apply` on your project.
417
+
- Easy way! Only need execute `dart fix --apply` on your project to fix the following changes:
418
418
- Rename FormBuilderChoiceChip to FormBuilderChoiceChips.
419
419
- Rename FormBuilderFilterChip to FormBuilderFilterChips.
0 commit comments