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
+5-1Lines changed: 5 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,9 @@
1
+
## [3.3.1] - 28-Jul-2019
2
+
* Fixed bugs in `FormBuilderDateTimePicker`
3
+
* Minor improvements to documentation
4
+
1
5
## [3.3.0] - 28-Jul-2019
2
-
* New Feature: You can now set `initialValue` for the Form - Accepts a `Map<String, dynamic>` where keys are `attribute`s and the values are `initialValue`s for corresponding fields
6
+
* New Feature: You can now set `initialValue` for `FormBuilder` - Accepts a `Map<String, dynamic>` where keys are `attribute`s and the values are `initialValue`s for corresponding fields
3
7
* New Field: `FormBuilderRangeSlider`
4
8
* Compatibility with newly released Flutter version `1.7.*`
5
9
*`Breaking change:` Renamed occurrences of `readonly` to `readOnly` to fit naming conventions
|`attribute`|`String`|`null`|`true`| This will form the key in the form value Map |
181
169
|`initialValue`|`dynamic`|`null`|`false`| The initial value of the input field |
182
-
|`readonly`|`bool`|`false`|`false`| Determines whether the field widget will accept user input. This value will be ignored if the `readonly` attribute of `FormBuilder` widget is set to `true`|
170
+
|`readOnly`|`bool`|`false`|`false`| Determines whether the field widget will accept user input. This value will be ignored if the `readOnly` attribute of `FormBuilder` widget is set to `true`|
|`validators`|`List<FormFieldValidator>`|`[]`|`false`| List of `FormFieldValidator`s that will check the validity of value candidate in the `FormField`|
185
173
|`onChanged`|`ValueChanged<T>`|`null`|`false`| This event function will fire immediately the the field value changes |
0 commit comments