Added mark as unread by default option

This commit is contained in:
Juan Gilsanz Polo
2025-04-03 22:24:59 +02:00
parent 09fda86e61
commit 7982644c23
9 changed files with 1604 additions and 2701 deletions

View File

@@ -8,6 +8,7 @@ class AppStatusModel {
OpenLinksBrowser openLinksBrowser;
bool showFavicon;
List<String> defaultTags;
bool markAsUnreadDefault;
AppStatusModel({
this.selectedTheme = SelectedTheme.system,
@@ -17,5 +18,6 @@ class AppStatusModel {
this.openLinksBrowser = OpenLinksBrowser.integrated,
this.showFavicon = true,
required this.defaultTags,
this.markAsUnreadDefault = false,
});
}