Fix scrollwheel zooming issues by making scale factor much higher number

This commit is contained in:
Hank Grabowski 2023-01-21 21:10:15 -05:00
parent 28f8e0ea9d
commit 57deeab1a0

View file

@ -67,7 +67,7 @@ class ImageViewerScreen extends StatelessWidget {
clipBehavior: Clip.none,
constrained: true,
maxScale: 10.0,
scaleFactor: 0.1,
scaleFactor: 400,
child:
CachedNetworkImage(imageUrl: attachment.uri.toString()),
),