Skip to content

Commit 1185336

Browse files
committed
Updated Changelog and Readme v3.10.0
1 parent e1d052e commit 1185336

File tree

3 files changed

+19
-9
lines changed

3 files changed

+19
-9
lines changed

CHANGELOG.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff 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+
111
## [3.9.0] - 03-May-2020
212
* 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
414
* Added option to `showCheckmark` for FormBuilderFilterChip, along with other options. Closes #260
515
* Added option to `allowEmpty` in `minLength` and `maxLength` validations. Closes #259
616
* Fixed bug where `locale`, `textDirection`, `useRootNavigator` & `builder` not passed down to `showDatePicker()` and `showTimePicker()`

README.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -193,26 +193,27 @@ Column(
193193
The currently supported fields include:
194194
* `FormBuilderCheckbox` - Single Checkbox field
195195
* `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.
198196
* `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.
199198
* `FormBuilderColorPicker` - For `Color` input selection
199+
* `FormBuilderCountryPicker` - Country selection from list
200200
* `FormBuilderDateRangePicker` - For selection of a range of dates
201201
* `FormBuilderDateTimePicker` - For `Date`, `Time` and `DateTime` input
202202
* `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.
203206
* `FormBuilderRadio` - Used to select one value from a list of Radio Widgets
204207
* `FormBuilderRangeSlider` - Used to select a range from a range of values
205208
* `FormBuilderRate` - For selection of a numerical value as a rating
206209
* `FormBuilderSegmentedControl` - For selection of a value from the `CupertinoSegmentedControl` as an input
207210
* `FormBuilderSignaturePad` - Presents a drawing pad on which user can doodle
208211
* `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`
210213
* `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
213215
* `FormBuilderTouchSpin` - Selection of a number by tapping on a plus or minus icon
214216
* `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.
216217

217218
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:
218219

pubspec.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
name: flutter_form_builder
22
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.
3-
version: 3.9.0
4-
author: Danvick Miller <[email protected]>
3+
version: 3.10.0
54
homepage: https://github.com/danvick/flutter_form_builder
65

76
environment:

0 commit comments

Comments
 (0)