feat: locate last viewed video

Closes #453

Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-03-30 18:53:49 +08:00
parent e89bd2fedf
commit 40429021be
8 changed files with 228 additions and 128 deletions

View File

@@ -32,9 +32,9 @@ abstract class CommonController extends GetxController
@override
final ScrollController scrollController = ScrollController();
int currentPage = 1;
late int currentPage = 1;
bool isLoading = false;
bool isEnd = false;
late bool isEnd = false;
Rx<LoadingState> loadingState = LoadingState.loading().obs;
Future<LoadingState> customGetData();