Skip to content

Commit aa43ad1

Browse files
committed
code formatting.
1 parent ab708ab commit aa43ad1

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

lib/src/fields/form_builder_checkbox_group.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class FormBuilderCheckboxGroup<T> extends FormBuilderFieldDecoration<List<T>> {
2626
final OptionsOrientation orientation;
2727

2828
/// Creates a list of Checkboxes for selecting multiple options
29-
FormBuilderCheckboxGroup( {
29+
FormBuilderCheckboxGroup({
3030
super.key,
3131
required super.name,
3232
this.visualDensity,

lib/src/widgets/grouped_checkbox.dart

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ class GroupedCheckbox<T> extends StatelessWidget {
2525
/// Defaults to [ColorScheme.secondary].
2626
final Color? activeColor;
2727
final VisualDensity? visualDensity;
28+
2829
/// The color to use for the check icon when this checkbox is checked.
2930
///
3031
/// Defaults to Color(0xFFFFFFFF)
@@ -202,7 +203,8 @@ class GroupedCheckbox<T> extends StatelessWidget {
202203
this.wrapTextDirection,
203204
this.wrapVerticalDirection = VerticalDirection.down,
204205
this.separator,
205-
this.controlAffinity = ControlAffinity.leading, this.visualDensity,
206+
this.controlAffinity = ControlAffinity.leading,
207+
this.visualDensity,
206208
});
207209

208210
@override

0 commit comments

Comments
 (0)