File tree Expand file tree Collapse file tree 4 files changed +20
-14
lines changed Expand file tree Collapse file tree 4 files changed +20
-14
lines changed Original file line number Diff line number Diff line change 1
1
## [ 4.2.0] - 29-Dec-2020
2
- * Added support for Slovak (sk) - @AdamA
2
+ * Added support for Slovak (sk) - @cek-cek
3
3
4
4
** BREAKING CHANGES** :
5
5
* Removed file picker field from package - moved to [ form_builder_file_picker] ( https://pub.dev/packages/form_builder_file_picker ) package.
16
16
* Fixed bug ` SearchableDropdown ` where setting value programmatically does not update UI. Fixes #627
17
17
* Upgraded flutter_typeahead to 1.9.1.
18
18
19
-
20
19
## [ 4.0.2] - 27-Nov-2020
21
20
* Fixed issue in Typeahead field where didChange not call and onChanged fired. Closes #595
22
21
* Fixed issue where french not included in list of supported languages & translations not working. Closes #561
Original file line number Diff line number Diff line change @@ -12,11 +12,15 @@ dependencies:
12
12
sdk : flutter
13
13
flutter_form_builder :
14
14
path : ../
15
- widget_with_codeview : ^1.0.3
15
+ widget_with_codeview : ^1.0.5
16
16
cupertino_icons : any
17
17
18
18
dependency_overrides :
19
- modal_bottom_sheet : ^0.2.1+1-dev
19
+ # modal_bottom_sheet: ^0.2.1+1-dev
20
+ intl : ^0.17.0
21
+ flutter_datetime_picker :
22
+ git :
23
+ url : https://github.com/espresso3389/flutter_datetime_picker
20
24
21
25
dev_dependencies :
22
26
flutter_test :
Original file line number Diff line number Diff line change @@ -181,7 +181,7 @@ class FormBuilderTypeAhead<T> extends FormBuilderField<T> {
181
181
182
182
/// The configuration of the [TextField] (https://docs.flutter.io/flutter/material/TextField-class.html)
183
183
/// that the TypeAhead widget displays
184
- final TextFieldConfiguration < T > textFieldConfiguration;
184
+ final TextFieldConfiguration textFieldConfiguration;
185
185
186
186
/// How far below the text field should the suggestions box be
187
187
///
@@ -325,7 +325,7 @@ class FormBuilderTypeAhead<T> extends FormBuilderField<T> {
325
325
),
326
326
focusNode: state.effectiveFocusNode,
327
327
decoration: state.decoration (),
328
- ) as TextFieldConfiguration < dynamic > ,
328
+ ) as TextFieldConfiguration ,
329
329
// HACK to satisfy strictness
330
330
suggestionsCallback: suggestionsCallback,
331
331
itemBuilder: itemBuilder,
Original file line number Diff line number Diff line change @@ -14,18 +14,21 @@ dependencies:
14
14
sdk : flutter
15
15
16
16
date_range_picker : ^1.0.6
17
- datetime_picker_formfield : ^1 .0.0
18
- dropdown_search : ^0.4.8
19
- flutter_colorpicker : ^0.3.4
17
+ datetime_picker_formfield : ^2 .0.0
18
+ dropdown_search : ^0.4.9
19
+ flutter_colorpicker : ^0.3.5
20
20
flutter_chips_input : ^1.9.5
21
- flutter_datetime_picker : ^1.4 .0
22
- flutter_touch_spin : ^1 .0.1
23
- flutter_typeahead : ^1.9.1
24
- intl : ^0.16.1
21
+ flutter_datetime_picker : ^1.5 .0
22
+ flutter_touch_spin : ^2 .0.0-nullsafety.0
23
+ flutter_typeahead : ^2.0.0
24
+ intl : ^0.17.0
25
25
rating_bar : ^0.2.0
26
- signature : ^3.2.0
26
+ signature : ^3.2.1
27
27
validators : ^2.0.1
28
28
29
+ dependency_overrides :
30
+ intl : ^0.17.0
31
+
29
32
dev_dependencies :
30
33
flutter_test :
31
34
sdk : flutter
You can’t perform that action at this time.
0 commit comments