diff --git a/lib/screens/home/components/product_list_tile.dart b/lib/screens/home/components/product_list_tile.dart index d0cf380..992429f 100644 --- a/lib/screens/home/components/product_list_tile.dart +++ b/lib/screens/home/components/product_list_tile.dart @@ -35,7 +35,9 @@ class ProductListTile extends StatelessWidget { ? Colors.black87 : Colors.grey; - Color _titleColor = product.parseSuccess ? Colors.white : Colors.red; + Color _titleColor = refreshing + ? Colors.grey + : product.parseSuccess ? Colors.white : Colors.red; Color _storeColor = _underTarget ? Colors.black87 : Colors.grey;