react-native-photo-view icon indicating copy to clipboard operation
react-native-photo-view copied to clipboard

How can i read current zoom Scale?

Open corjCury opened this issue 8 years ago • 4 comments

I want to read current zoom scale. Onscale method giving some info about it (like nativeEvent.scaleFactor) but i cant use it.

corjCury avatar Nov 10 '16 23:11 corjCury

I have same question, did u find it?

mrThinBone avatar Feb 13 '17 09:02 mrThinBone

I could need it as well. Any workaround ? :)

GuillaumeMunsch avatar Apr 27 '17 14:04 GuillaumeMunsch

@corjCury Were you able to find out how to get zoom scale?

RavishankarR avatar Aug 17 '17 12:08 RavishankarR

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}}
/>

hanselsen avatar Jan 30 '18 09:01 hanselsen