Skip to content

Commit 144bfd1

Browse files
authored
formating
1 parent 2b05e16 commit 144bfd1

File tree

1 file changed

+10
-6
lines changed

1 file changed

+10
-6
lines changed

packages/diagrams/lib/src/radio_list_tile.dart

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,10 @@ class LinkedLabelRadio extends StatelessWidget {
3737
color: Colors.blueAccent,
3838
decoration: TextDecoration.underline,
3939
),
40-
recognizer:
41-
TapGestureRecognizer()
42-
..onTap = () {
43-
print('Label has been tapped.');
44-
},
40+
recognizer: TapGestureRecognizer()
41+
..onTap = () {
42+
print('Label has been tapped.');
43+
},
4544
),
4645
),
4746
],
@@ -68,7 +67,12 @@ class LabeledRadio extends StatelessWidget {
6867
onTap: () {},
6968
child: Padding(
7069
padding: padding,
71-
child: Row(children: <Widget>[Radio<bool>(value: value), Text(label)]),
70+
child: Row(
71+
children: <Widget>[
72+
Radio<bool>(value: value),
73+
Text(label),
74+
],
75+
),
7276
),
7377
);
7478
}

0 commit comments

Comments
 (0)