mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-17 23:56:13 +08:00
11 lines
222 B
Dart
11 lines
222 B
Dart
enum UpPanelPosition {
|
|
top('顶部'),
|
|
leftFixed('左侧常驻'),
|
|
rightFixed('右侧常驻'),
|
|
leftDrawer('左侧抽屉'),
|
|
rightDrawer('右侧抽屉');
|
|
|
|
final String label;
|
|
const UpPanelPosition(this.label);
|
|
}
|