new: fullscreen rotation angel

This commit is contained in:
lollipopkit
2023-06-27 13:31:35 +08:00
parent 76e8a1efca
commit 92e2e2a75f
10 changed files with 100 additions and 25 deletions

View File

@@ -68,7 +68,7 @@ class SettingStore extends PersistentStore {
// Editor theme
StoreProperty<String> get editorTheme =>
property('editorTheme', defaultValue: defaultEditorTheme);
StoreProperty<String> get editorDarkTheme =>
property('editorDarkTheme', defaultValue: defaultEditorDarkTheme);
@@ -78,6 +78,9 @@ class SettingStore extends PersistentStore {
StoreProperty<bool> get fullScreenJitter =>
property('fullScreenJitter', defaultValue: true);
StoreProperty<int> get fullScreenRotateQuarter =>
property('fullScreenRotateQuarter', defaultValue: 1);
StoreProperty<int> get keyboardType =>
property('keyboardType', defaultValue: TextInputType.text.index);