mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-04-20 11:08:03 +08:00
10 lines
136 B
Dart
10 lines
136 B
Dart
// 全屏模式
|
|
enum FullScreenMode {
|
|
// 根据内容自适应
|
|
auto,
|
|
// 始终竖屏
|
|
vertical,
|
|
// 始终横屏
|
|
horizontal
|
|
}
|