openspacelabs / react-native-zoomable-view

A view component for react-native with pinch to zoom, tap to move and double tap to zoom capability.
MIT License
189 stars 57 forks source link

Not Able to use Under View #100

Open vishalsohani27 opened 2 months ago

vishalsohani27 commented 2 months ago

If i use ReactNativeZoomableView Independentely it words like follow.... <ReactNativeZoomableView maxZoom={5.5} minZoom={0.5} zoomStep={0.1} initialZoom={1} bindToBorders={true} onZoomAfter={this.logOutZoomState} style={{ padding: 1, }}> <Image source={{uri: myimage}} // Your background image style={{height: screenWidth, width: screenWidth, top: 10}} />

 **but**

But it does not work if i use it under like following

----Rest of the code ----

since it is not visible under i am not able to play with image overlay type functions. please let me know if i am wrong.