Added slide options menu to bookmark item

This commit is contained in:
Juan Gilsanz Polo
2026-03-22 20:34:40 +01:00
parent f2d5b075c7
commit 1cb9ab58c2
20 changed files with 590 additions and 315 deletions

View File

@@ -9,6 +9,7 @@ class AppStatusModel {
bool showFavicon;
List<String> defaultTags;
bool markAsUnreadDefault;
bool enableSlideOptions;
AppStatusModel({
this.selectedTheme = SelectedTheme.system,
@@ -19,5 +20,6 @@ class AppStatusModel {
this.showFavicon = true,
required this.defaultTags,
this.markAsUnreadDefault = false,
this.enableSlideOptions = true,
});
}