react-native-image-zoom
react-native-image-zoom copied to clipboard
handleLayout need to check height change, otherwise it is not working properly on iPad rotation
Hi, the handleLayout function needs to check height change, otherwise it is not working on iPad rotation. Please add following change to that function:
if (event.nativeEvent.layout.width !== this.width || event.nativeEvent.layout.height !== this.height) { .... }
Thanks, SXC