Added default tags

This commit is contained in:
Juan Gilsanz Polo
2024-06-11 19:27:11 +02:00
parent bfaa8bf356
commit 9765dfeea5
18 changed files with 259 additions and 29 deletions

View File

@@ -7,6 +7,7 @@ class AppStatusModel {
int selectedColor;
OpenLinksBrowser openLinksBrowser;
bool showFavicon;
List<String> defaultTags;
AppStatusModel({
this.selectedTheme = SelectedTheme.system,
@@ -15,5 +16,6 @@ class AppStatusModel {
this.selectedColor = 0,
this.openLinksBrowser = OpenLinksBrowser.integrated,
this.showFavicon = true,
required this.defaultTags,
});
}