Files
PiliPlus/lib/models/common/dynamic/up_panel_position.dart
dom cdc1720358 Reformat
Signed-off-by: dom <githubaccount56556@proton.me>
2026-04-03 09:35:25 +08:00

12 lines
226 B
Dart

enum UpPanelPosition {
top('顶部'),
leftFixed('左侧常驻'),
rightFixed('右侧常驻'),
leftDrawer('左侧抽屉'),
rightDrawer('右侧抽屉'),
;
final String label;
const UpPanelPosition(this.label);
}