We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 12c1234 commit 9c18abeCopy full SHA for 9c18abe
lib/src/fields/form_builder_dropdown.dart
@@ -19,6 +19,7 @@ class FormBuilderDropdown<T> extends StatefulWidget {
19
final int elevation;
20
final Widget disabledHint;
21
final double iconSize;
22
+ @Deprecated('Underline in DropdownButton is ignored.')
23
final Widget underline;
24
final Widget icon;
25
final Color iconDisabledColor;
@@ -181,7 +182,6 @@ class _FormBuilderDropdownState<T> extends State<FormBuilderDropdown<T>> {
181
182
}
183
184
void _changeValue(FormFieldState field, value) {
- FocusScope.of(context).requestFocus(FocusNode());
185
field.didChange(value);
186
widget.onChanged?.call(value);
187
0 commit comments