increased font weight in dashboard card

This commit is contained in:
asif
2025-08-30 00:06:05 +05:30
parent a48781ad1b
commit 61a6e356d9

View File

@@ -302,6 +302,7 @@ class _DashboardScreenState extends State<DashboardScreen> {
style: TextStyle( style: TextStyle(
color: theme.colorScheme.onPrimary, color: theme.colorScheme.onPrimary,
fontSize: 18, fontSize: 18,
fontWeight: FontWeight.w700,
), ),
), ),
DropdownButton<int>( DropdownButton<int>(
@@ -322,7 +323,7 @@ class _DashboardScreenState extends State<DashboardScreen> {
style: TextStyle( style: TextStyle(
color: theme.colorScheme.onPrimary, color: theme.colorScheme.onPrimary,
fontSize: 18, fontSize: 18,
letterSpacing: 1.1, fontWeight: FontWeight.w700,
), ),
), ),
); );