Setting disable favicon and skeleton loader

This commit is contained in:
Juan Gilsanz Polo
2024-02-24 16:41:23 +01:00
parent 45da6a23e1
commit c9617b5fdc
10 changed files with 91 additions and 25 deletions

View File

@@ -6,6 +6,7 @@ class AppStatusModel {
bool useDynamicTheme;
int selectedColor;
bool useInAppBrowser;
bool showFavicon;
AppStatusModel({
this.selectedTheme = SelectedTheme.system,
@@ -13,5 +14,6 @@ class AppStatusModel {
this.useDynamicTheme = true,
this.selectedColor = 0,
this.useInAppBrowser = true,
this.showFavicon = true,
});
}