From e51191bcd87af45a45ddd1d49211c5c2fa4627ae Mon Sep 17 00:00:00 2001 From: Federico Viceconti Date: Thu, 8 Sep 2022 11:54:36 +0200 Subject: [PATCH] Adding missing loader on fullscreen photo viewer --- lib/ui/common/modals/fullscreen_url_img_viewer.dart | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lib/ui/common/modals/fullscreen_url_img_viewer.dart b/lib/ui/common/modals/fullscreen_url_img_viewer.dart index 5868fc7a..394c0bc7 100644 --- a/lib/ui/common/modals/fullscreen_url_img_viewer.dart +++ b/lib/ui/common/modals/fullscreen_url_img_viewer.dart @@ -91,9 +91,12 @@ class _ViewerState extends State<_Viewer> with SingleTickerProviderStateMixin { child: Hero( tag: widget.url, child: AppImage( - image: NetworkImage(widget.url), + image: NetworkImage( + widget.url, + ), fit: BoxFit.contain, scale: 2.5, + progress: true, ), ), ),