Skip to content

Commit

Permalink
Fix ScoreRadioTile
Browse files Browse the repository at this point in the history
  • Loading branch information
natsuk4ze committed Jan 23, 2024
1 parent d0d7b0d commit 6572a65
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions lib/features/score/score_radio_tile.dart
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,14 @@ class ScoreRadioTile extends ConsumerWidget {
children: [
SizedBox(
width: 16,
child: Radio(
activeColor: type.color,
materialTapTargetSize: MaterialTapTargetSize.shrinkWrap,
value: type,
groupValue: groupeType,
onChanged: (_) {},
child: IgnorePointer(
child: Radio(
activeColor: type.color,
materialTapTargetSize: MaterialTapTargetSize.shrinkWrap,
value: type,
groupValue: groupeType,
onChanged: (_) {},
),
),
),
const Gap(12),
Expand Down

0 comments on commit 6572a65

Please sign in to comment.