Files
pilipala/lib/plugin/pl_player/models/play_repeat.dart
2024-01-07 12:58:24 +08:00

26 lines
462 B
Dart

enum PlayRepeat {
pause,
listOrder,
singleCycle,
listCycle,
}
extension PlayRepeatExtension on PlayRepeat {
static final List<String> _descList = <String>[
'播完暂停',
'顺序播放',
'单个循环',
'列表循环',
];
String get description => _descList[index];
static final List<double> _valueList = [
1,
2,
3,
4,
];
double get value => _valueList[index];
double get defaultValue => _valueList[1];
}