Feature: dismissible tasks #1

Merged
marco merged 12 commits from development into main 2026-06-19 00:36:43 +02:00
Showing only changes of commit 20b017b066 - Show all commits
+6 -1
View File
@@ -22,7 +22,12 @@ class LocalRepository
if (_prefs == null) {
await SharedPreferencesWithCache.create(
cacheOptions: const SharedPreferencesWithCacheOptions(
allowList: <String>{_tasksKey, _taskOrderKey},
allowList: <String>{
_tasksKey,
_taskOrderKey,
_alarmsKey,
_locationsKey,
},
),
).then((value) => _prefs = value);
}