Theme configuration

This commit is contained in:
Juan Gilsanz Polo
2024-02-23 01:26:22 +01:00
parent 57af5e926e
commit e21546693a
32 changed files with 1053 additions and 45 deletions

View File

@@ -1,3 +1,5 @@
enum LoadStatus { loading, loaded, error }
enum ConnectionMethod { http, https }
enum SelectedTheme { system, light, dark }

View File

@@ -0,0 +1,6 @@
class SharedPreferencesKeys {
static const serversInstances = "serversInstances";
static const selectedTheme = "selectedTheme";
static const useDynamicTheme = "useDynamicTheme";
static const selectedColor = "selectedColor";
}

View File

@@ -0,0 +1,3 @@
class Strings {
static const createdBy = "JGeek00";
}

View File

@@ -1,4 +1,5 @@
class Urls {
static const linkdingInstallationInstructions =
"https://github.com/sissbruecker/linkding?tab=readme-ov-file#installation";
static const gitHubRepo = "https://github.com/JGeek00/linkdy";
}