Don't allow zooming

When these methods were used to display images (migration screen, history screen, etc) the images (anime/manga covers and extension icons) were zoomable. You could (on a touch device) pinch to zoom.
And with the mouse you could get your cursor an on image and scroll up to zoom out and scroll down to zoom in.
This was not necessary confusing for the user.
This commit is contained in:
NBA2K1 2025-06-29 20:30:16 +02:00
parent 4d39044511
commit 49f77febe4

View file

@ -20,7 +20,7 @@ Widget cachedNetworkImage({
height: height,
fit: fit,
filterQuality: FilterQuality.medium,
mode: ExtendedImageMode.gesture,
mode: ExtendedImageMode.none,
handleLoadingProgress: true,
loadStateChanged: (state) {
if (state.extendedImageLoadState == LoadState.failed) {
@ -53,7 +53,7 @@ Widget cachedCompressedNetworkImage({
height: height,
fit: fit,
filterQuality: FilterQuality.medium,
mode: ExtendedImageMode.gesture,
mode: ExtendedImageMode.none,
handleLoadingProgress: true,
clearMemoryCacheWhenDispose: true,
loadStateChanged: (state) {