14 lines
385 B
Dart
14 lines
385 B
Dart
import 'package:flutter_kinetra/kt_model/kt_short_video_bean.dart';
|
|
import 'package:video_player/video_player.dart';
|
|
|
|
import '../../kt_widgets/kt_status_widget.dart';
|
|
|
|
class KtExploreState {
|
|
int curIndex = 1;
|
|
List<KtShortVideoBean> videoList = [];
|
|
List<VideoPlayerController?> controllers = [];
|
|
|
|
int currentPage = 0;
|
|
KtLoadStatusType loadStatus = KtLoadStatusType.loading;
|
|
}
|