diff --git a/lib/features/dashboard/screens/dashboard_screen.dart b/lib/features/dashboard/screens/dashboard_screen.dart index 397e5b3..f2e7571 100644 --- a/lib/features/dashboard/screens/dashboard_screen.dart +++ b/lib/features/dashboard/screens/dashboard_screen.dart @@ -301,7 +301,7 @@ class _DashboardScreenState extends State { "${getFullAccountType(currAccount.accountType)}: ", style: TextStyle( color: theme.colorScheme.onPrimary, - fontSize: 16, + fontSize: 18, ), ), DropdownButton( @@ -312,7 +312,7 @@ class _DashboardScreenState extends State { iconEnabledColor: theme.colorScheme.onPrimary, style: TextStyle( color: theme.colorScheme.onPrimary, - fontSize: 16, + fontSize: 18, ), items: List.generate(users.length, (index) { return DropdownMenuItem( @@ -321,7 +321,8 @@ class _DashboardScreenState extends State { users[index].accountNo ?? 'N/A', style: TextStyle( color: theme.colorScheme.onPrimary, - fontSize: 16, + fontSize: 18, + letterSpacing: 1.1, ), ), );