mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-06 09:13:48 +08:00
mod: tweaks opt: publish page Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
11 lines
237 B
Dart
11 lines
237 B
Dart
enum UpPanelPosition {
|
|
leftFixed,
|
|
rightFixed,
|
|
leftDrawer,
|
|
rightDrawer,
|
|
}
|
|
|
|
extension UpPanelPositionDesc on UpPanelPosition {
|
|
String get labels => const ['左侧常驻', '右侧常驻', '左侧抽屉', '右侧抽屉'][index];
|
|
}
|