diff --git a/lib/presentation/views/round_view.dart b/lib/presentation/views/round_view.dart index 7c62120..2506cde 100644 --- a/lib/presentation/views/round_view.dart +++ b/lib/presentation/views/round_view.dart @@ -197,11 +197,13 @@ class _RoundViewState extends State { overflow: TextOverflow.ellipsis, ), Visibility( - visible: index == 0, + visible: + index == 0 && widget.roundNumber != 1, child: const SizedBox(width: 10), ), Visibility( - visible: index == 0, + visible: + index == 0 && widget.roundNumber != 1, 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