react-native-photo-view
react-native-photo-view copied to clipboard
How can i read current zoom Scale?
I want to read current zoom scale. Onscale method giving some info about it (like nativeEvent.scaleFactor) but i cant use it.
I have same question, did u find it?
I could need it as well. Any workaround ? :)
@corjCury Were you able to find out how to get zoom scale?
Maybe this will help
<PhotoView
onScale={e => {
//save scale value here
console.log( e.nativeEvent.scale);
}}
minimumZoomScale={0.5}
maximumZoomScale={3}
source={{uri: this.state.image}}
/>