2025-09-23 15:09:18 +08:00

19 lines
511 B
Dart

import '../../kt_model/kt_video_detail_bean.dart';
import '../../kt_widgets/kt_status_widget.dart';
class VideoPlayState {
String imageUrl = '';
int shortPlayId = -1;
num videoId = -1;
int curUnlock = 999;
int? activityId;
bool isFromDiscover = false;
VideoDetailBean? video;
List<Episode> episodeList = [];
KtLoadStatusType loadStatus = KtLoadStatusType.loading;
int currentVideoIndex = 0;
double currentSpeed = 1.0;
final List<double> speedList = [0.75, 1.0, 1.25, 1.5, 2.0, 3.0];
}