This commit is contained in:
2026-06-28 19:26:28 +03:00
parent 4727835402
commit cd6113f3c6
+26 -7
View File
@@ -303,13 +303,32 @@ class _DashboardScreenState extends ConsumerState<DashboardScreen> {
elevation: 0, elevation: 0,
scrolledUnderElevation: 0, scrolledUnderElevation: 0,
titleSpacing: 20, titleSpacing: 20,
title: Text( title: Row(
'Casha', mainAxisSize: MainAxisSize.min,
style: Theme.of(context).textTheme.headlineMedium?.copyWith( children: [
fontWeight: FontWeight.w800, Text(
color: Theme.of(context).colorScheme.onSurface, 'Casha',
letterSpacing: -0.5, style: Theme.of(context).textTheme.headlineMedium?.copyWith(
), fontWeight: FontWeight.w800,
color: Theme.of(context).colorScheme.onSurface,
letterSpacing: -0.5,
),
),
if (ref.watch(featureFlagsProvider).canEditCardColors) ...[
const SizedBox(width: 6),
Text(
'Pro',
style: Theme.of(context).textTheme.headlineMedium?.copyWith(
fontWeight: FontWeight.w500,
color: Theme.of(context)
.colorScheme
.onSurface
.withOpacity(0.4),
letterSpacing: -0.5,
),
),
],
],
), ),
actions: [ actions: [
Padding( Padding(