diff --git a/lib/presentation/views/round_view.dart b/lib/presentation/views/round_view.dart index a7ddde1..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,13 +199,11 @@ class _RoundViewState extends State { overflow: TextOverflow.ellipsis, ), Visibility( - visible: - index == 0 && widget.roundNumber > 1, + visible: shouldShowMedal, child: const SizedBox(width: 10), ), Visibility( - visible: - index == 0 && widget.roundNumber > 1, + visible: shouldShowMedal, child: const Icon(FontAwesomeIcons.medal, size: 15)) ]))