#35 new: servers tab reorderable

This commit is contained in:
lollipopkit
2023-05-12 18:35:56 +08:00
parent 2ee0c6f995
commit cbeaa9705f
6 changed files with 70 additions and 41 deletions

View File

@@ -39,4 +39,8 @@ class SettingStore extends PersistentStore {
/// Backgroud running (Android)
StoreProperty<bool> get bgRun => property('bgRun', defaultValue: isAndroid);
// Server order
StoreProperty<List<String>> get serverOrder =>
property('serverOrder', defaultValue: null);
}