From 9c60dc1c1c36a2a56015bffea5f680bd7fba5065 Mon Sep 17 00:00:00 2001 From: asif Date: Fri, 29 Aug 2025 21:48:10 +0530 Subject: [PATCH] changed debit and credit icons colors --- lib/features/dashboard/screens/dashboard_screen.dart | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/features/dashboard/screens/dashboard_screen.dart b/lib/features/dashboard/screens/dashboard_screen.dart index ba102ac..bea1990 100644 --- a/lib/features/dashboard/screens/dashboard_screen.dart +++ b/lib/features/dashboard/screens/dashboard_screen.dart @@ -561,8 +561,9 @@ class _DashboardScreenState extends State { tx.type == 'CR' ? Symbols.call_received : Symbols.call_made, - color: - tx.type == 'CR' ? Colors.green : Colors.red, + color: tx.type == 'CR' + ? const Color(0xFF10BB10) + : theme.colorScheme.error, ), title: Text( tx.date ?? '',