Adding missing loader on fullscreen photo viewer

This commit is contained in:
Federico Viceconti 2022-09-08 11:54:36 +02:00
parent 269f4062e8
commit e51191bcd8

View File

@ -91,9 +91,12 @@ class _ViewerState extends State<_Viewer> with SingleTickerProviderStateMixin {
child: Hero( child: Hero(
tag: widget.url, tag: widget.url,
child: AppImage( child: AppImage(
image: NetworkImage(widget.url), image: NetworkImage(
widget.url,
),
fit: BoxFit.contain, fit: BoxFit.contain,
scale: 2.5, scale: 2.5,
progress: true,
), ),
), ),
), ),