import 'package:flutter/cupertino.dart'; import 'package:get/get.dart'; import 'package:pilipala/http/video.dart'; import 'package:pilipala/models/model_rec_video_item.dart'; class HomeController extends GetxController { final ScrollController scrollController = ScrollController(); int count = 12; int _currentPage = 1; int crossAxisCount = 2; RxList videoList = [RecVideoItemModel()].obs; bool isLoadingMore = false; bool flag = false; @override void onInit() { super.onInit(); queryRcmdFeed('init'); } // 获取推荐 Future queryRcmdFeed(type) async { var res = await VideoHttp.rcmdVideoList( ps: count, freshIdx: _currentPage, ); if (res['status']) { if (type == 'init') { videoList.value = res['data']; } else if (type == 'onRefresh') { videoList.insertAll(0, res['data']); } else if (type == 'onLoad') { videoList.addAll(res['data']); } _currentPage += 1; } isLoadingMore = false; } // 下拉刷新 Future onRefresh() async { queryRcmdFeed('onRefresh'); } // 上拉加载 Future onLoad() async { queryRcmdFeed('onLoad'); } // 返回顶部并刷新 void animateToTop() async { if (scrollController.offset >= MediaQuery.of(Get.context!).size.height * 5) { scrollController.jumpTo(0); } else { await scrollController.animateTo(0, duration: const Duration(milliseconds: 500), curve: Curves.easeInOut); } } }