diff --git a/lib/presentation/views/round_view.dart b/lib/presentation/views/round_view.dart index 7c62120..9e2b40f 100644 --- a/lib/presentation/views/round_view.dart +++ b/lib/presentation/views/round_view.dart @@ -182,6 +182,8 @@ class _RoundViewState extends State { itemBuilder: (context, index) { final originalIndex = originalIndices[index]; final name = rotatedPlayers[index]; + bool shouldShowMedal = + index == 0 && widget.roundNumber > 1; return Padding( padding: const EdgeInsets.symmetric( vertical: 10, horizontal: 20), @@ -197,11 +199,11 @@ class _RoundViewState extends State { overflow: TextOverflow.ellipsis, ), Visibility( - visible: index == 0, + visible: shouldShowMedal, child: const SizedBox(width: 10), ), Visibility( - visible: index == 0, + visible: shouldShowMedal, child: const Icon(FontAwesomeIcons.medal, size: 15)) ])) diff --git a/pubspec.yaml b/pubspec.yaml index 6773a53..6b71a0f 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -2,7 +2,7 @@ name: cabo_counter description: "Mobile app for the card game Cabo" publish_to: 'none' -version: 0.4.7+506 +version: 0.4.7+507 environment: sdk: ^3.5.4