minor change
This commit is contained in:
parent
43ef91cc7b
commit
ea3bd1d0a2
1 changed files with 7 additions and 1 deletions
|
@ -71,7 +71,13 @@ class ImagePageState extends State<ImagePage> with AutomaticKeepAliveClientMixin
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
loadingChild: const Center(
|
loadingChild: const Center(
|
||||||
child: CircularProgressIndicator(),
|
child: SizedBox(
|
||||||
|
width: 64,
|
||||||
|
height: 64,
|
||||||
|
child: CircularProgressIndicator(
|
||||||
|
strokeWidth: 2,
|
||||||
|
),
|
||||||
|
),
|
||||||
),
|
),
|
||||||
backgroundDecoration: BoxDecoration(color: Colors.transparent),
|
backgroundDecoration: BoxDecoration(color: Colors.transparent),
|
||||||
pageController: widget.pageController,
|
pageController: widget.pageController,
|
||||||
|
|
Loading…
Reference in a new issue