add star rating, network cache, advanced search option, loginWithCookies, loadNext; fix some minor issues

This commit is contained in:
nyne
2024-10-25 22:51:23 +08:00
parent b682d7d87b
commit 897f92f4c9
27 changed files with 1420 additions and 319 deletions

View File

@@ -179,7 +179,7 @@ class _SingleExplorePageState extends StateWithController<_SingleExplorePage> {
Widget build(BuildContext context) {
if (data.loadMultiPart != null) {
return buildMultiPart();
} else if (data.loadPage != null) {
} else if (data.loadPage != null || data.loadNext != null) {
return buildComicList();
} else if (data.loadMixed != null) {
return _MixedExplorePage(
@@ -196,7 +196,8 @@ class _SingleExplorePageState extends StateWithController<_SingleExplorePage> {
Widget buildComicList() {
return ComicList(
loadPage: data.loadPage!,
loadPage: data.loadPage,
loadNext: data.loadNext,
key: ValueKey(key),
);
}