File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -32,6 +32,8 @@ class FormBuilderChoiceChip extends StatefulWidget {
32
32
final double runSpacing, spacing;
33
33
final TextDirection textDirection;
34
34
final VerticalDirection verticalDirection;
35
+ final EdgeInsets labelPadding;
36
+ final TextStyle labelStyle;
35
37
36
38
FormBuilderChoiceChip ({
37
39
Key key,
@@ -61,6 +63,8 @@ class FormBuilderChoiceChip extends StatefulWidget {
61
63
this .spacing = 0.0 ,
62
64
this .textDirection,
63
65
this .verticalDirection = VerticalDirection .down,
66
+ this .labelPadding,
67
+ this .labelStyle,
64
68
}) : super (key: key);
65
69
66
70
@override
@@ -151,7 +155,9 @@ class _FormBuilderChoiceChipState extends State<FormBuilderChoiceChip> {
151
155
widget.onChanged? .call (choice);
152
156
});
153
157
},
154
- )
158
+ labelPadding: widget.labelPadding,
159
+ labelStyle: widget.labelStyle,
160
+ ),
155
161
]),
156
162
);
157
163
},
You can’t perform that action at this time.
0 commit comments