react-native-image-watch
v1.0.0
Published
ImageWatch for RN
Downloads
5
Maintainers
Readme
react-native-image-fit
ImageWatch component for RN
Installation
$ npm install --save react-native-image-watch
or
$ yarn add react-native-image-watch
Usage
import { ImageViewer } from 'react-native-image-watch';
export const App = () => (
<ImageViewer
disabled={false} // by default
source={require('./photo.png')} // or { url: 'https://...' }
doubleTapEnabled={true} // by default double tap will zoom image
onMove={(e, gestureState) => null}
onPress={(opening) => console.log(opening)}
mainImageStyle={styles.someStyle}
zoomedImageStyle={styles.zoomedImageStyle}
mainImageProps={{
resizeMode: 'contain'
}}
zoomedImageProps={{
resizeMode: 'contain'
}}
/>
)