File tree Expand file tree Collapse file tree 2 files changed +14
-2
lines changed Expand file tree Collapse file tree 2 files changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -72,7 +72,13 @@ class FormBuilderCheckbox extends FormBuilderField<bool> {
72
72
required String name,
73
73
FormFieldValidator <bool >? validator,
74
74
bool ? initialValue,
75
- InputDecoration decoration = const InputDecoration (),
75
+ InputDecoration decoration = const InputDecoration (
76
+ border: InputBorder .none,
77
+ focusedBorder: InputBorder .none,
78
+ enabledBorder: InputBorder .none,
79
+ errorBorder: InputBorder .none,
80
+ disabledBorder: InputBorder .none,
81
+ ),
76
82
ValueChanged <bool >? onChanged,
77
83
ValueTransformer <bool >? valueTransformer,
78
84
bool enabled = true ,
Original file line number Diff line number Diff line change @@ -40,7 +40,13 @@ class FormBuilderFilterChip<T> extends FormBuilderField<List<T>> {
40
40
required String name,
41
41
FormFieldValidator <List <T >>? validator,
42
42
List <T > initialValue = const [],
43
- InputDecoration decoration = const InputDecoration (),
43
+ InputDecoration decoration = const InputDecoration (
44
+ border: InputBorder .none,
45
+ focusedBorder: InputBorder .none,
46
+ enabledBorder: InputBorder .none,
47
+ errorBorder: InputBorder .none,
48
+ disabledBorder: InputBorder .none,
49
+ ),
44
50
ValueChanged <List <T >>? onChanged,
45
51
ValueTransformer <List <T >>? valueTransformer,
46
52
bool enabled = true ,
You can’t perform that action at this time.
0 commit comments