Theme configuration
This commit is contained in:
@@ -1,3 +1,5 @@
|
||||
enum LoadStatus { loading, loaded, error }
|
||||
|
||||
enum ConnectionMethod { http, https }
|
||||
|
||||
enum SelectedTheme { system, light, dark }
|
||||
|
||||
6
lib/constants/shared_preferences_keys.dart
Normal file
6
lib/constants/shared_preferences_keys.dart
Normal file
@@ -0,0 +1,6 @@
|
||||
class SharedPreferencesKeys {
|
||||
static const serversInstances = "serversInstances";
|
||||
static const selectedTheme = "selectedTheme";
|
||||
static const useDynamicTheme = "useDynamicTheme";
|
||||
static const selectedColor = "selectedColor";
|
||||
}
|
||||
3
lib/constants/strings.dart
Normal file
3
lib/constants/strings.dart
Normal file
@@ -0,0 +1,3 @@
|
||||
class Strings {
|
||||
static const createdBy = "JGeek00";
|
||||
}
|
||||
@@ -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";
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user