From 2d991ce9dfadaf6538a06a003b094586fc4e10d9 Mon Sep 17 00:00:00 2001 From: Juan Gilsanz Polo Date: Thu, 25 Jan 2024 00:51:46 +0100 Subject: [PATCH] Fixed showColor --- lib/screens/home/top_items/row_item.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/screens/home/top_items/row_item.dart b/lib/screens/home/top_items/row_item.dart index bc8856b..bfa43e7 100644 --- a/lib/screens/home/top_items/row_item.dart +++ b/lib/screens/home/top_items/row_item.dart @@ -62,7 +62,7 @@ class RowItem extends StatelessWidget { Flexible( child: Row( children: [ - Container( + if (showColor == true) Container( margin: const EdgeInsets.only(right: 16), width: 12, height: 12, @@ -142,7 +142,7 @@ class OthersRowItem extends StatelessWidget { Flexible( child: Row( children: [ - Container( + if (showColor == true) Container( margin: const EdgeInsets.only(right: 16), width: 12, height: 12,