Skip to content

Commit 286a2ff

Browse files
committed
Update to latest flutter_chips_input. Fixes #415
1 parent 9e561a4 commit 286a2ff

File tree

4 files changed

+14
-4
lines changed

4 files changed

+14
-4
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## [3.13.5] - 08-Sep-2020
2+
* Fixed bug in `DateRangePicker` where `onChanged` fires before change. Closes #434
3+
* Use app's locale for default DateTimePicker display formatting
4+
* Update to latest `flutter_chips_input`. Fixes #415
5+
16
## [3.13.4] - 27-Aug-2020
27
* Fixed bug where `CountryPicker.onSaved` breaks if value is null
38
* Fixed bug where `initialValue` not saved

example/lib/main.dart

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,12 @@ class MyApp extends StatelessWidget {
2828
GlobalCupertinoLocalizations.delegate,
2929
],
3030
// locale: Locale('ru'),
31-
supportedLocales: [Locale('en', 'GB'), Locale('en', 'US'), Locale('es', ''), Locale('ru'), ],
31+
supportedLocales: [
32+
Locale('en', 'GB'),
33+
Locale('en', 'US'),
34+
Locale('es', ''),
35+
Locale('ru'),
36+
],
3237
home: MyHomePage(),
3338
);
3439
}

pubspec.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ packages:
159159
name: flutter_chips_input
160160
url: "https://pub.dartlang.org"
161161
source: hosted
162-
version: "1.9.3"
162+
version: "1.9.4"
163163
flutter_colorpicker:
164164
dependency: "direct main"
165165
description:

pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +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.13.4
3+
version: 3.13.5
44
homepage: https://github.com/danvick/flutter_form_builder
55

66
environment:
@@ -13,7 +13,7 @@ dependencies:
1313

1414
flutter_typeahead: ^1.8.8
1515
intl: ^0.16.1
16-
flutter_chips_input: ^1.9.3
16+
flutter_chips_input: ^1.9.4
1717
datetime_picker_formfield: ^1.0.0
1818
flutter_colorpicker: ^0.3.4
1919
signature: ^3.2.0

0 commit comments

Comments
 (0)