mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-04-20 11:08:03 +08:00
12 lines
225 B
Dart
12 lines
225 B
Dart
enum UpPanelPosition {
|
|
top('顶部'),
|
|
leftFixed('左侧常驻'),
|
|
rightFixed('右侧常驻'),
|
|
leftDrawer('左侧抽屉'),
|
|
rightDrawer('右侧抽屉')
|
|
;
|
|
|
|
final String label;
|
|
const UpPanelPosition(this.label);
|
|
}
|