🐛 Fix explore pagination placeholder maxWidth

This commit is contained in:
2026-01-07 01:22:28 +08:00
parent 67805b413e
commit 757f1b880c
2 changed files with 4 additions and 2 deletions

View File

@@ -317,7 +317,7 @@ class ExploreScreen extends HookConsumerWidget {
// Sliver list cannot provide refresh handled by the pagination list
isRefreshable: false,
isSliver: true,
footerSkeletonChild: const PostItemSkeleton(),
footerSkeletonChild: const PostItemSkeleton(maxWidth: double.infinity),
contentBuilder: (data, footer) =>
_ActivityListView(data: data, isWide: isWide, footer: footer),
);