diff --git a/lib/widgets/fullscreen/image_page.dart b/lib/widgets/fullscreen/image_page.dart index c620415d2..123683b5d 100644 --- a/lib/widgets/fullscreen/image_page.dart +++ b/lib/widgets/fullscreen/image_page.dart @@ -71,7 +71,13 @@ class ImagePageState extends State with AutomaticKeepAliveClientMixin ); }, loadingChild: const Center( - child: CircularProgressIndicator(), + child: SizedBox( + width: 64, + height: 64, + child: CircularProgressIndicator( + strokeWidth: 2, + ), + ), ), backgroundDecoration: BoxDecoration(color: Colors.transparent), pageController: widget.pageController,