How to add Scrolling first time on an image if the image size is greater than window Dimensions.
` <ImageZoom
cropWidth={Dimensions.get('window').width}
cropHeight={Dimensions.get('window').height}
imageWidth={3300}
imageHeight={1800}
<Image
style={{ width: 3300, height: 1800 }}
source={source}
/>
`
Firt time Scrolling is not enable. If I zoom lilte bit then Scrolling enabled.
How to add Scrolling first time on an image if the image size is greater than window Dimensions. ` <ImageZoom cropWidth={Dimensions.get('window').width} cropHeight={Dimensions.get('window').height} imageWidth={3300} imageHeight={1800}