#14 add ssh log

This commit is contained in:
lollipopkit
2023-03-15 13:37:19 +08:00
parent c2e822f49d
commit 58b950f814
14 changed files with 153 additions and 37 deletions

View File

@@ -31,6 +31,5 @@ class SettingStore extends PersistentStore {
property('maxRetryCount', defaultValue: 7);
/// Night mode: 0 -> auto, 1 -> light, 2 -> dark
StoreProperty<int> get themeMode =>
property('nightMode', defaultValue: ThemeMode.system.index);
StoreProperty<int> get themeMode => property('themeMode', defaultValue: 0);
}