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
+26-8Lines changed: 26 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,11 @@
1
+
## [3.0.0-beta.1] - 04-April-2019
2
+
* Complete rewrite of the package - stateful
3
+
* Contains `FormBuilderField` for creation of custom `FormField`s
4
+
* New attribute `validators` allows composability and reusability of different `FormFieldValidator`
5
+
functions that do different validations
6
+
* New Feature `FormBuilderValidators` comes with common validation functionality options such as:
7
+
required, min, max,
8
+
1
9
## [2.0.3] - 26-March-2019
2
10
* Allow `null`s in `FormBuilder` controls `attribute`
3
11
@@ -9,8 +17,10 @@
9
17
10
18
## [2.0.0] - 25-March-2019
11
19
### New Features and fixes
12
-
* New attribute `decoration` for `FormBuilderInput`. Enables one to customize `InputDecoration` like icons, labelStyles etc
13
-
* Added ability to add `GlobalKey` of type `FormBuilderState` to FormBuilder that will be the handle to the
20
+
* New attribute `decoration` for `FormBuilderInput`. Enables one to customize `InputDecoration`
21
+
like icons, labelStyles etc
22
+
* Added ability to add `GlobalKey` of type `FormBuilderState` to FormBuilder that will be
23
+
the handle to the
14
24
state of the form enabling saving and resetting. Similar to using Flutter's `Form`.
15
25
* Added new input type `FormBuilder.signaturePad` which provides a drawing pad for user signature
16
26
* Added `max` attribute to `chipsInput` to limit the number of chips users can add
@@ -27,13 +37,18 @@ Access form state using a `GlobalKey<FormBilderState>`
27
37
* Fixed bugs originating from upgrading `flutter_typeahead` from v0.5.1 to v1.2.1
28
38
29
39
## [1.5.0] - 20-March-2019
30
-
* Now using `datetime_picker_formfield` plugin from pub for DatePicker and TimePicker. Should close [#33](https://github.com/danvick/flutter_form_builder/issues/33)
40
+
* Now using `datetime_picker_formfield` plugin from pub for DatePicker and TimePicker.
41
+
Should close [#33](https://github.com/danvick/flutter_form_builder/issues/33)
31
42
* Added new `FormBuilderInput` - DateTimePicker
32
-
***Breaking change**: DatePicker, TimePicker & DateTimePicker now return an object of type `DateTime` instead of `String`
43
+
***Breaking change**: DatePicker, TimePicker & DateTimePicker now return an object of
44
+
type `DateTime` instead of `String`
33
45
* Upgraded `flutter_typeahead` from v0.5.1 to v1.2.1 - comes with more widgets options
34
46
35
47
## [1.4.0] - 29-Jan-2019
36
-
* The entire form or individual controls can now be made readonly by making `readonly` property to `true`. Default value is `false`. Closes [#11](https://github.com/danvick/flutter_form_builder/issues/11) and[#16](https://github.com/danvick/flutter_form_builder/issues/16)
48
+
* The entire form or individual controls can now be made readonly by making `readonly` property
49
+
to `true`. Default value is `false`.
50
+
Closes [#11](https://github.com/danvick/flutter_form_builder/issues/11) and
* Fixed bug on Slider where current value not updated on slider & label
@@ -49,8 +64,10 @@ Bug fix: Imported `dart:async` for use of `Future`s to be compatible with Dart <
49
64
* Fixed bug where `lastDate` and `firstDate` for DatePicker don't work
50
65
51
66
## [1.3.1] - 17-Dec-2018
52
-
* Moved ChipsInput into own library on pub.dartlang.org, check it out [here](https://pub.dartlang.org/packages/flutter_chips_input)
53
-
* Updated example code to include proper use of Form's `onChanged` function after update. Closes [#8](https://github.com/danvick/flutter_form_builder/issues/8)
67
+
* Moved ChipsInput into own library on pub.dartlang.org,
68
+
check it out [here](https://pub.dartlang.org/packages/flutter_chips_input)
69
+
* Updated example code to include proper use of Form's `onChanged` function after update.
* Fixed bug where TypeAhead value reset when other fields are updated
@@ -66,7 +83,8 @@ Bug fix: Imported `dart:async` for use of `Future`s to be compatible with Dart <
66
83
* Some bugs introduced, to be fixed later
67
84
68
85
## [1.1.0] - 19-Nov-2018
69
-
* Fixed bug where validation not working for fields outside screen (when using ListView) - [Flutter Issue #17385](https://github.com/flutter/flutter/issues/17385)
86
+
* Fixed bug where validation not working for fields outside screen (when using ListView) -
Copy file name to clipboardExpand all lines: pubspec.yaml
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
name: flutter_form_builder
2
2
description: Package to build Material Form with components such as TextField (With number, url, email validation), DropDown, TypeAhead, Radios, Checkboxes
0 commit comments