File tree Expand file tree Collapse file tree 3 files changed +11
-2
lines changed Expand file tree Collapse file tree 3 files changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -28,6 +28,9 @@ class FormBuilderChipsInput<T> extends StatefulWidget {
28
28
final double suggestionsBoxMaxHeight;
29
29
final TextCapitalization textCapitalization;
30
30
final FormFieldSetter onSaved;
31
+ final FocusNode focusNode;
32
+ final bool allowChipEditing;
33
+ final bool autofocus;
31
34
32
35
FormBuilderChipsInput ({
33
36
Key key,
@@ -52,6 +55,9 @@ class FormBuilderChipsInput<T> extends StatefulWidget {
52
55
this .obscureText = false ,
53
56
this .textCapitalization = TextCapitalization .none,
54
57
this .onSaved,
58
+ this .focusNode,
59
+ this .allowChipEditing = false ,
60
+ this .autofocus = false ,
55
61
}) : super (key: key);
56
62
57
63
@override
@@ -129,6 +135,9 @@ class _FormBuilderChipsInputState extends State<FormBuilderChipsInput> {
129
135
obscureText: widget.obscureText,
130
136
suggestionsBoxMaxHeight: widget.suggestionsBoxMaxHeight,
131
137
textCapitalization: widget.textCapitalization,
138
+ focusNode: widget.focusNode,
139
+ allowChipEditing: widget.allowChipEditing,
140
+ autofocus: widget.autofocus,
132
141
);
133
142
},
134
143
);
Original file line number Diff line number Diff line change @@ -117,7 +117,7 @@ packages:
117
117
name: flutter_chips_input
118
118
url: "https://pub.dartlang.org"
119
119
source: hosted
120
- version: "1.8.1 "
120
+ version: "1.8.2 "
121
121
flutter_colorpicker:
122
122
dependency: "direct main"
123
123
description:
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ dependencies:
12
12
13
13
flutter_typeahead : ^1.8.3
14
14
intl : ^0.16.1
15
- flutter_chips_input : ^1.8.1
15
+ flutter_chips_input : ^1.8.2
16
16
datetime_picker_formfield : ^1.0.0
17
17
flutter_colorpicker : ^0.3.4
18
18
signature : ^3.1.1
You can’t perform that action at this time.
0 commit comments