changed the font size of acc no in card
This commit is contained in:
@@ -301,7 +301,7 @@ class _DashboardScreenState extends State<DashboardScreen> {
|
|||||||
"${getFullAccountType(currAccount.accountType)}: ",
|
"${getFullAccountType(currAccount.accountType)}: ",
|
||||||
style: TextStyle(
|
style: TextStyle(
|
||||||
color: theme.colorScheme.onPrimary,
|
color: theme.colorScheme.onPrimary,
|
||||||
fontSize: 16,
|
fontSize: 18,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
DropdownButton<int>(
|
DropdownButton<int>(
|
||||||
@@ -312,7 +312,7 @@ class _DashboardScreenState extends State<DashboardScreen> {
|
|||||||
iconEnabledColor: theme.colorScheme.onPrimary,
|
iconEnabledColor: theme.colorScheme.onPrimary,
|
||||||
style: TextStyle(
|
style: TextStyle(
|
||||||
color: theme.colorScheme.onPrimary,
|
color: theme.colorScheme.onPrimary,
|
||||||
fontSize: 16,
|
fontSize: 18,
|
||||||
),
|
),
|
||||||
items: List.generate(users.length, (index) {
|
items: List.generate(users.length, (index) {
|
||||||
return DropdownMenuItem<int>(
|
return DropdownMenuItem<int>(
|
||||||
@@ -321,7 +321,8 @@ class _DashboardScreenState extends State<DashboardScreen> {
|
|||||||
users[index].accountNo ?? 'N/A',
|
users[index].accountNo ?? 'N/A',
|
||||||
style: TextStyle(
|
style: TextStyle(
|
||||||
color: theme.colorScheme.onPrimary,
|
color: theme.colorScheme.onPrimary,
|
||||||
fontSize: 16,
|
fontSize: 18,
|
||||||
|
letterSpacing: 1.1,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
|
Reference in New Issue
Block a user