From b717885270c7ea4249cb06c6cb166016343b2c34 Mon Sep 17 00:00:00 2001 From: Simon Ding Date: Fri, 27 Sep 2024 15:19:45 +0800 Subject: [PATCH] feat: change status color --- ui/lib/welcome_page.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ui/lib/welcome_page.dart b/ui/lib/welcome_page.dart index c39f963..ebc56ab 100644 --- a/ui/lib/welcome_page.dart +++ b/ui/lib/welcome_page.dart @@ -98,8 +98,8 @@ class MediaCard extends StatelessWidget { LinearProgressIndicator( value: 1, color: item.downloadedNum! >= item.monitoredNum! - ? Colors.green - : Colors.blue, + ? Colors.teal + : Colors.lightGreen, ), Text( item.name!,