This commit is contained in:
Elias Bonnici 2024-09-03 16:31:11 +02:00
commit 94cde7398c
No known key found for this signature in database
GPG Key ID: 5EAC28EA3F980CCF

View File

@ -639,6 +639,8 @@ class _AppPageState extends ConsumerState<AppPage> {
}, },
), ),
), ),
iconTheme: IconThemeData(
color: Theme.of(context).colorScheme.onSurfaceVariant),
scrolledUnderElevation: 0.0, scrolledUnderElevation: 0.0,
leadingWidth: hasRail ? 84 : null, leadingWidth: hasRail ? 84 : null,
backgroundColor: Theme.of(context).colorScheme.surface, backgroundColor: Theme.of(context).colorScheme.surface,
@ -730,7 +732,10 @@ class _AppPageState extends ConsumerState<AppPage> {
.read(_detailViewVisibilityProvider.notifier) .read(_detailViewVisibilityProvider.notifier)
.toggleExpanded(); .toggleExpanded();
}, },
icon: const Icon(Symbols.more_vert), icon: const Icon(
Symbols.more_vert,
weight: 600.0,
),
iconSize: 24, iconSize: 24,
tooltip: showDetailView ? l10n.s_hide_menu : l10n.s_show_menu, tooltip: showDetailView ? l10n.s_hide_menu : l10n.s_show_menu,
padding: const EdgeInsets.all(12), padding: const EdgeInsets.all(12),