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 4e7621a commit 68a52ddCopy full SHA for 68a52dd
lib/src/fields/form_builder_dropdown.dart
@@ -19,6 +19,7 @@ class FormBuilderDropdown extends StatefulWidget {
19
final int elevation;
20
final Widget disabledHint;
21
final double iconSize;
22
+ final Widget underline;
23
24
FormBuilderDropdown({
25
@required this.attribute,
@@ -36,6 +37,7 @@ class FormBuilderDropdown extends StatefulWidget {
36
37
this.disabledHint,
38
this.onChanged,
39
this.valueTransformer,
40
+ this.underline,
41
});
42
43
@override
@@ -97,6 +99,7 @@ class _FormBuilderDropdownState extends State<FormBuilderDropdown> {
97
99
disabledHint: widget.disabledHint,
98
100
elevation: widget.elevation,
101
iconSize: widget.iconSize,
102
+ underline: widget.underline,
103
onChanged: _readonly
104
? null
105
: (value) {
0 commit comments