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
+11-1Lines changed: 11 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,16 @@
1
+
## [3.10.0] - 15-May-2020
2
+
* Added `FormBuilderCountryPicker` and `FormBuilderPhoneField`. Good work by [Furkan KURT](https://github.com/furkankurt)
3
+
* Set `readOnly` prop to `false` in ColorPicker, DateRangePicker & DateTimePicker TextFields - prevents keyboard popping up. Closes #210
4
+
* Fixed allowEmpty bug in `minLength` validator. Closes #259
5
+
* Allow user to set iconColor for ImagePicker due to issue with dark mode. Closes #268
6
+
* Use [signature package](https://pub.dev/packages/signature) instead of self-maintained Widget
7
+
* Use `ObjectKey`s to enforce rebuild after reset
8
+
* Added `decoration` attribute to ImagePicker, deprecated `labelText`
9
+
* Remove deprecation for `initialTime` & `initialDate` in DateTimePicker
10
+
1
11
## [3.9.0] - 03-May-2020
2
12
* New field type `FormBuilderImagePicker` courtesy of [Gustavo Vítor](https://github.com/gustavovitor)
3
-
* Switched rating package from [sy_flutter_widgets](https://pub.dev/packages/form_builder_map_field) to [rating_bar](https://pub.dev/packages/rating_bar) with more configuration options
13
+
* Switched rating package from [sy_flutter_widgets](https://pub.dev/packages/sy_flutter_widgets) to [rating_bar](https://pub.dev/packages/rating_bar) with more configuration options
4
14
* Added option to `showCheckmark` for FormBuilderFilterChip, along with other options. Closes #260
5
15
* Added option to `allowEmpty` in `minLength` and `maxLength` validations. Closes #259
6
16
* Fixed bug where `locale`, `textDirection`, `useRootNavigator` & `builder` not passed down to `showDatePicker()` and `showTimePicker()`
Copy file name to clipboardExpand all lines: README.md
+7-6Lines changed: 7 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -193,26 +193,27 @@ Column(
193
193
The currently supported fields include:
194
194
*`FormBuilderCheckbox` - Single Checkbox field
195
195
*`FormBuilderCheckboxList` - List of Checkboxes for multiple selection
196
-
*`FormBuilderChoiceChip` - Creates a chip that acts like a radio button.
197
-
*`FormBuilderFilterChip` - Creates a chip that acts like a checkbox.
198
196
*`FormBuilderChipsInput` - Takes a list of `Chip`s as input and suggests more options on typing
197
+
*`FormBuilderChoiceChip` - Creates a chip that acts like a radio button.
199
198
*`FormBuilderColorPicker` - For `Color` input selection
199
+
*`FormBuilderCountryPicker` - Country selection from list
200
200
*`FormBuilderDateRangePicker` - For selection of a range of dates
201
201
*`FormBuilderDateTimePicker` - For `Date`, `Time` and `DateTime` input
202
202
*`FormBuilderDropdown` - Used to select one value from a list as a Dropdown
203
+
*`FormBuilderFilterChip` - Creates a chip that acts like a checkbox.
204
+
*`FormBuilderImagePicker` - Picker a image from Gallery or Camera and stores it in a List of images, File or String. **Note**: This picker is available for iOS and Android.
205
+
*`FormBuilderPhoneField` - International phone number input.
203
206
*`FormBuilderRadio` - Used to select one value from a list of Radio Widgets
204
207
*`FormBuilderRangeSlider` - Used to select a range from a range of values
205
208
*`FormBuilderRate` - For selection of a numerical value as a rating
206
209
*`FormBuilderSegmentedControl` - For selection of a value from the `CupertinoSegmentedControl` as an input
207
210
*`FormBuilderSignaturePad` - Presents a drawing pad on which user can doodle
208
211
*`FormBuilderSlider` - For selection of a numerical value on a slider
209
-
*~~`FormBuilderStepper`~~ - Selection of a number by tapping on a plus or minus symbol. Deprecated; replace with `FormBuilderTouchSpin`
212
+
*~~`FormBuilderStepper`~~ - Selection of a number by tapping on a plus or minus symbol. Deprecated; replaced with `FormBuilderTouchSpin`
210
213
*`FormBuilderSwitch` - On/Off switch
211
-
*`FormBuilderTextField` - For text input. Accepts input of single-line text, multi-line text, password,
212
-
email, urls etc by using different configurations and validators
214
+
*`FormBuilderTextField` - For text input. Accepts input of single-line text, multi-line text, password, email, urls etc by using different configurations and validators
213
215
*`FormBuilderTouchSpin` - Selection of a number by tapping on a plus or minus icon
214
216
*`FormBuilderTypeAhead` - Auto-completes user input from a list of items
215
-
*`FormBuilderImagePicker` - Picker a image from Gallery or Camera and stores it in a List of images, File or String. **Note**: This picker is available for iOS and Android.
216
217
217
218
In order to create an input field in the form, along with the label, and any applicable validation, there are several attributes that are supported by all types of inputs namely:
Copy file name to clipboardExpand all lines: pubspec.yaml
+1-2Lines changed: 1 addition & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,6 @@
1
1
name: flutter_form_builder
2
2
description: Package to build Material Form with fields like TextField, DropDown, Switches etc. with ability to create custom FormFields and composability and reuse validation functions.
0 commit comments