mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-05-14 05:03:57 +08:00
10 lines
165 B
Dart
10 lines
165 B
Dart
enum UpPanelPosition {
|
|
top('顶部'),
|
|
leftFixed('左侧常驻'),
|
|
rightFixed('右侧常驻'),
|
|
;
|
|
|
|
final String label;
|
|
const UpPanelPosition(this.label);
|
|
}
|