2025-09-12 14:19:13 +08:00

18 lines
555 B
Dart

import '../../kt_model/kt_short_video_bean.dart';
import '../../kt_widgets/kt_status_widget.dart';
class KtHomeState {
KtLoadStatusType loadStatus = KtLoadStatusType.loading;
List<KtShortVideoBean> topPickList = [];
List<KtShortVideoBean> trendingList = [];
List<KtShortVideoBean> trendingTopList = [];
List<KtShortVideoBean> trendingBottomList = [];
List<KtShortVideoBean> arrivalList = [];
List<KtShortVideoBean> bannerList = [];
bool showVideo = true;
bool hasSubCoin = false;
int receiveCoin = 0;
KtShortVideoBean? curVideo;
}