Skip to content

Commit

Permalink
Released v4.0.0-RC.1
Browse files Browse the repository at this point in the history
  • Loading branch information
danvick committed Oct 2, 2020
1 parent adfe909 commit dcd8799
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 23 deletions.
15 changes: 13 additions & 2 deletions CHANGELOG.md
@@ -1,8 +1,19 @@
## [4.0.0-beta.5] - 05-Sept-2020
## [4.0.0-RC.1] - 02-Oct-2020
* Added compatibility for Flutter v1.22
* Documentation improvements
* hide floating label if field is empty
* Add default placeholder image for ImagePicker
* For default DateTimePicker format, use localized DateTime formats
* Fixed bug in DateRangePicker where user can just pick one date
* Fix bug in dropdown where setting enabled to false doesn't affect input. Closes #450
* Bumped flutter_chips_input from v1.9.3 to v1.9.4
* **BREAKING CHANGE**: Removed CountryPicker field because of limited use. Replaced with SearchableDropdown with similar functionality but not only limited to countries.

## [4.0.0-beta.5] - 05-Sep-2020
* Finished implementation of `FormBuilderSearchableDropdown`.
* Deprecated `FormBuilderCountryPicker` - redundant due to `FormBuilderSearchableDropdown` inclusion.

## [4.0.0-beta.4] - 04-Sept-2020
## [4.0.0-beta.4] - 04-Sep-2020
* Fix for label overflows in Radio & Checkbox Groups
* Fixed bug in `FormBuilderDateRangePicker` where if dialog dismissed, current value is cleared
* Fix bug where changes from user defined `TextEditingController` in `FormBuilderTextField` not detected. Closes #448
Expand Down
17 changes: 0 additions & 17 deletions example/lib/sources/complete_form.dart
Expand Up @@ -419,23 +419,6 @@ class CompleteFormState extends State<CompleteForm> {
]),
),
SizedBox(height: 15),
/*FormBuilderSearchableDropdown<Contact>(
decoration: InputDecoration(
labelText: 'Phone Number',
border: OutlineInputBorder(),
),
name: 'searchable',
items: contacts
.map((e) => DropdownMenuItem(
value: e,
child: Text('${e.name}'),
))
.toList(),
hint: 'Select one',
searchHint: 'Select one',
isExpanded: true,
onChanged: _onChanged,
),*/
],
),
),
Expand Down
2 changes: 1 addition & 1 deletion pubspec.lock
Expand Up @@ -300,7 +300,7 @@ packages:
name: image_picker
url: "https://pub.dartlang.org"
source: hosted
version: "0.6.7+10"
version: "0.6.7+11"
image_picker_for_web:
dependency: "direct main"
description:
Expand Down
6 changes: 3 additions & 3 deletions pubspec.yaml
@@ -1,6 +1,6 @@
name: flutter_form_builder
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.
version: 4.0.0-beta.5
version: 4.0.0-RC.1
homepage: https://github.com/danvick/flutter_form_builder

environment:
Expand All @@ -13,15 +13,15 @@ dependencies:
flutter_localizations:
sdk: flutter

country_code_picker: ^1.4.0
country_code_picker: ^1.5.0
country_pickers: ^1.3.0
date_range_picker: ^1.0.6
datetime_picker_formfield: ^1.0.0
flutter_colorpicker: ^0.3.4
flutter_chips_input: ^1.9.4
flutter_touch_spin: ^1.0.1
flutter_typeahead: ^1.8.8
image_picker: ^0.6.7+7
image_picker: ^0.6.7+11
image_picker_for_web: ^0.1.0+2
intl: ^0.16.1
phone_number: ^0.6.2+4
Expand Down

0 comments on commit dcd8799

Please sign in to comment.