change not equal to greater than
This commit is contained in:
@@ -198,12 +198,12 @@ class _RoundViewState extends State<RoundView> {
|
|||||||
),
|
),
|
||||||
Visibility(
|
Visibility(
|
||||||
visible:
|
visible:
|
||||||
index == 0 && widget.roundNumber != 1,
|
index == 0 && widget.roundNumber > 1,
|
||||||
child: const SizedBox(width: 10),
|
child: const SizedBox(width: 10),
|
||||||
),
|
),
|
||||||
Visibility(
|
Visibility(
|
||||||
visible:
|
visible:
|
||||||
index == 0 && widget.roundNumber != 1,
|
index == 0 && widget.roundNumber > 1,
|
||||||
child: const Icon(FontAwesomeIcons.medal,
|
child: const Icon(FontAwesomeIcons.medal,
|
||||||
size: 15))
|
size: 15))
|
||||||
]))
|
]))
|
||||||
|
|||||||
Reference in New Issue
Block a user