react-native-image-viewing
react-native-image-viewing copied to clipboard
Ability to set maximumZoomScale and minimumZoomScale
It would be nice if we could send both as prop, such as:
<ImageView
imageIndex={0}
minimumZoomScale={0.5}
maximumZoomScale={4}
images={imagesList}
visible={isVisible}
onRequestClose={close}
/>
maximumZoomScale
could default to 2
and minimumZoomScale
to 1
.