From 985eaeea3b4a4e446031e06d9606dccd526a4799 Mon Sep 17 00:00:00 2001 From: Micah Morrison Date: Fri, 24 Jan 2025 11:35:44 -0500 Subject: [PATCH] Show progress indicator during post refresh in experimental post page (#1671) --- lib/post/pages/post_page.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/post/pages/post_page.dart b/lib/post/pages/post_page.dart index 20600547a..d468df992 100644 --- a/lib/post/pages/post_page.dart +++ b/lib/post/pages/post_page.dart @@ -201,7 +201,7 @@ class _PostPageState extends State { viewSource: viewSource, ), ), - if (state.status == PostStatus.loading) + if (state.status == PostStatus.loading || state.status == PostStatus.refreshing) const SliverFillRemaining( hasScrollBody: false, child: Center(child: CircularProgressIndicator()),