From ea3bd1d0a238123ea5bb402c06b54cab9d1437d1 Mon Sep 17 00:00:00 2001 From: Thibault Deckers Date: Tue, 24 Dec 2019 12:15:45 +0900 Subject: [PATCH] minor change --- lib/widgets/fullscreen/image_page.dart | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) 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,