修复 ExploreShowScreen 加载时出现两个加载指示器的问题

This commit is contained in:
HapeLee
2026-05-28 18:54:29 +08:00
parent 68c16cbc5a
commit d2f14b05f2
@@ -327,7 +327,7 @@ fun ExploreShowScreen(
item(span = { GridItemSpan(maxLineSpan) }) {
LoadMoreFooter(
isLoading = state.isLoading,
isLoading = state.isLoading && !state.isRefreshing,
errorMsg = state.errorMsg,
isEnd = state.isEnd,
onRetry = { viewModel.onIntent(ExploreShowIntent.LoadMore) }
@@ -377,7 +377,7 @@ fun ExploreShowScreen(
item {
LoadMoreFooter(
isLoading = state.isLoading,
isLoading = state.isLoading && !state.isRefreshing,
errorMsg = state.errorMsg,
isEnd = state.isEnd,
onRetry = { viewModel.onIntent(ExploreShowIntent.LoadMore) }