mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-06 09:13:48 +08:00
11 lines
236 B
Dart
11 lines
236 B
Dart
enum UpPanelPosition {
|
|
leftFixed,
|
|
rightFixed,
|
|
leftDrawer,
|
|
rightDrawer,
|
|
}
|
|
|
|
extension UpPanelPositionExt on UpPanelPosition {
|
|
String get labels => const ['左侧常驻', '右侧常驻', '左侧抽屉', '右侧抽屉'][index];
|
|
}
|