bookmark feature rewrite

This commit is contained in:
Fabian Freund
2026-07-30 07:20:23 +02:00
parent 3a942a57a6
commit 33dfcf890c
46 changed files with 8107 additions and 4716 deletions
@@ -781,8 +781,8 @@ class _AppLinksModeSection extends HookConsumerWidget {
await ref
.read(saveGeneralSettingsControllerProvider.notifier)
.save(
(current) =>
current.copyWith.appLinkMarketplaceFallback(value),
(current) => current.copyWith
.appLinkMarketplaceFallback(value),
);
},
),
@@ -845,9 +845,9 @@ class _AppLinkRulesSubsection extends ConsumerWidget {
await ref
.read(saveGeneralSettingsControllerProvider.notifier)
.save(
(current) => current.copyWith.appLinkRules({
...current.appLinkRules,
}..remove(key)),
(current) => current.copyWith.appLinkRules(
{...current.appLinkRules}..remove(key),
),
);
},
),