new: full screen

This commit is contained in:
lollipopkit
2023-06-08 22:17:26 +08:00
parent 342c3ea295
commit 0ddfc4ec75
12 changed files with 370 additions and 5 deletions

View File

@@ -6,7 +6,7 @@ import '../res/default.dart';
class SettingStore extends PersistentStore {
StoreProperty<int> get primaryColor => property(
'primaryColor',
defaultValue: defaultPrimaryColor.value,
defaultValue: 4287106639,
);
StoreProperty<int> get serverStatusUpdateInterval => property(
@@ -66,4 +66,7 @@ class SettingStore extends PersistentStore {
// Editor theme
StoreProperty<String> get editorTheme =>
property('editorTheme', defaultValue: defaultEditorTheme);
StoreProperty<bool> get fullScreen =>
property('fullScreen', defaultValue: false);
}