Skip to content

Commit 2bbd396

Browse files
committed
format
1 parent 947fcdc commit 2bbd396

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

example/lib/widgets/dialogs/box_fit_dialog.dart

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,7 @@ class _BoxFitDialogState extends State<BoxFitDialog> {
4646
child: Column(
4747
children: [
4848
for (final fit in BoxFit.values)
49-
RadioListTile<BoxFit>(
50-
title: Text(fit.name),
51-
value: fit,
52-
),
49+
RadioListTile<BoxFit>(title: Text(fit.name), value: fit),
5350
],
5451
),
5552
),

0 commit comments

Comments
 (0)