Changed font size in transaction detail screen

This commit is contained in:
asif
2025-08-26 21:03:28 +05:30
parent a64e68d642
commit eb0e1c120e
2 changed files with 42 additions and 42 deletions

View File

@@ -93,14 +93,14 @@ class TransactionDetailsScreen extends StatelessWidget {
"$label: ",
style: const TextStyle(
fontWeight: FontWeight.bold,
fontSize: 20,
fontSize: 17,
),
),
const SizedBox(height: 30),
Expanded(
child: Text(
value,
style: const TextStyle(fontSize: 20),
style: const TextStyle(fontSize: 16),
),
),
],