This commit is contained in:
2026-03-21 00:33:31 +03:00
parent 340cf0a282
commit c2e13512e4
2 changed files with 24 additions and 24 deletions
BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 310 KiB

+24 -24
View File
@@ -83,32 +83,32 @@ class _DashboardScreenState extends ConsumerState<DashboardScreen> {
return Scaffold( return Scaffold(
backgroundColor: Theme.of(context).scaffoldBackgroundColor, backgroundColor: Theme.of(context).scaffoldBackgroundColor,
appBar: AppBar( appBar: AppBar(
title: Row( backgroundColor: Theme.of(context).scaffoldBackgroundColor,
children: [ elevation: 0,
Expanded( scrolledUnderElevation: 0,
child: Column( titleSpacing: 20,
crossAxisAlignment: CrossAxisAlignment.start, title: Text(
children: [ 'Casha',
Text( style: Theme.of(context).textTheme.headlineMedium?.copyWith(
'Casha', fontWeight: FontWeight.w800,
style: Theme.of(context).textTheme.titleLarge?.copyWith( color: Theme.of(context).colorScheme.onSurface,
fontWeight: FontWeight.w700, letterSpacing: -0.5,
color: Theme.of(context).colorScheme.onSurface, ),
), ),
), actions: [
Text( Padding(
DateFormat('MMMM yyyy').format(DateTime.now()), padding: const EdgeInsets.only(right: 20),
style: Theme.of(context).textTheme.bodySmall?.copyWith( child: Center(
color: Theme.of( child: Text(
context, DateFormat('MMMM yyyy').format(DateTime.now()),
).colorScheme.onSurface.withOpacity(0.6), style: Theme.of(context).textTheme.bodyMedium?.copyWith(
), color: Theme.of(context).colorScheme.onSurface.withOpacity(0.5),
), fontWeight: FontWeight.w500,
], ),
), ),
), ),
], ),
), ],
), ),
floatingActionButton: FloatingActionButton.extended( floatingActionButton: FloatingActionButton.extended(
onPressed: () => context.push('/add'), onPressed: () => context.push('/add'),