fix: ssh use SafeArea

This commit is contained in:
lollipopkit
2023-02-02 18:47:07 +08:00
parent 82a201d3dc
commit 7837fa4339
13 changed files with 44 additions and 36 deletions

View File

@@ -22,6 +22,7 @@ class SettingStore extends PersistentStore {
/// First time to use SSH term
StoreProperty<bool> get firstTimeUseSshTerm =>
property('firstTimeUseSshTerm', defaultValue: true);
StoreProperty<int> get termColorIdx => property('termColorIdx', defaultValue: 0);
StoreProperty<int> get termColorIdx =>
property('termColorIdx', defaultValue: 0);
}