changed the font size of acc no in card

This commit is contained in:
asif
2025-08-29 23:55:39 +05:30
parent ef3556f207
commit bc2c460f96

View File

@@ -301,7 +301,7 @@ class _DashboardScreenState extends State<DashboardScreen> {
"${getFullAccountType(currAccount.accountType)}: ",
style: TextStyle(
color: theme.colorScheme.onPrimary,
fontSize: 16,
fontSize: 18,
),
),
DropdownButton<int>(
@@ -312,7 +312,7 @@ class _DashboardScreenState extends State<DashboardScreen> {
iconEnabledColor: theme.colorScheme.onPrimary,
style: TextStyle(
color: theme.colorScheme.onPrimary,
fontSize: 16,
fontSize: 18,
),
items: List.generate(users.length, (index) {
return DropdownMenuItem<int>(
@@ -321,7 +321,8 @@ class _DashboardScreenState extends State<DashboardScreen> {
users[index].accountNo ?? 'N/A',
style: TextStyle(
color: theme.colorScheme.onPrimary,
fontSize: 16,
fontSize: 18,
letterSpacing: 1.1,
),
),
);