Theme Colour bugs fixed

This commit is contained in:
2025-08-25 17:47:18 +05:30
parent 04c992c934
commit 180d3a3a60
7 changed files with 70 additions and 50 deletions

View File

@@ -572,20 +572,20 @@ class _DashboardScreenState extends State<DashboardScreen> {
tx.type == 'CR' ? Colors.green : Colors.red,
),
title: Text(
tx.name != null
tx.date ?? '',
style: const TextStyle(fontSize: 15),
),
subtitle: Text(
tx.name != null
? (tx.name!.length > 18
? tx.name!.substring(0, 22)
: tx.name!)
: '',
style: const TextStyle(fontSize: 14),
),
subtitle: Text(
tx.date ?? '',
style: const TextStyle(fontSize: 12),
),
trailing: Text(
"${tx.amount}",
style: const TextStyle(fontSize: 16),
style: const TextStyle(fontSize: 17),
),
onTap: () {
Navigator.push(