feat(appearance): manual toggle to force backdrop blur on lower device tiers

This commit is contained in:
zarzet
2026-07-27 01:39:16 +07:00
parent 9da3607932
commit ac56e76b62
20 changed files with 137 additions and 6 deletions
@@ -101,6 +101,15 @@ class AppearanceSettingsPage extends ConsumerWidget {
onChanged: (value) => ref
.read(settingsProvider.notifier)
.setHeroAnimationsEnabled(value),
),
SettingsSwitchItem(
icon: Icons.blur_on,
title: context.l10n.appearanceForceBlur,
subtitle: context.l10n.appearanceForceBlurSubtitle,
value: settings.forceBackdropBlur,
onChanged: (value) => ref
.read(settingsProvider.notifier)
.setForceBackdropBlur(value),
showDivider: false,
),
],