Fixed bug with wrong medal icon
This commit is contained in:
@@ -197,11 +197,13 @@ class _RoundViewState extends State<RoundView> {
|
||||
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))
|
||||
]))
|
||||
|
||||
Reference in New Issue
Block a user