App ask for review after first time boot for 3 days

This commit is contained in:
2025-12-22 23:04:47 +08:00
parent ba6d6ef97a
commit f727882b93
6 changed files with 152 additions and 27 deletions

View File

@@ -364,7 +364,7 @@ class PaginationListFooter<T> extends HookConsumerWidget {
onVisibilityChanged: (VisibilityInfo info) {
hasBeenVisible.value = true;
if (!noti.fetchedAll && !data.isLoading && !data.hasError) {
noti.fetchFurther();
if (context.mounted) noti.fetchFurther();
}
},
child: isSliver ? SliverToBoxAdapter(child: child) : child,