We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2b05e16 commit 144bfd1Copy full SHA for 144bfd1
packages/diagrams/lib/src/radio_list_tile.dart
@@ -37,11 +37,10 @@ class LinkedLabelRadio extends StatelessWidget {
37
color: Colors.blueAccent,
38
decoration: TextDecoration.underline,
39
),
40
- recognizer:
41
- TapGestureRecognizer()
42
- ..onTap = () {
43
- print('Label has been tapped.');
44
- },
+ recognizer: TapGestureRecognizer()
+ ..onTap = () {
+ print('Label has been tapped.');
+ },
45
46
47
],
@@ -68,7 +67,12 @@ class LabeledRadio extends StatelessWidget {
68
67
onTap: () {},
69
child: Padding(
70
padding: padding,
71
- child: Row(children: <Widget>[Radio<bool>(value: value), Text(label)]),
+ child: Row(
+ children: <Widget>[
72
+ Radio<bool>(value: value),
73
+ Text(label),
74
+ ],
75
+ ),
76
77
);
78
}
0 commit comments