🔔 Alert..!! Get 2 Month Free Cloud Hosting With $200 Bonus From Digital Ocean ACTIVATE DEAL

Image Viewer component for RN, similar to Facebook or LinkedIn.

Image React Native

Documentation

react-native-image-fit

ImageViewer component for RN

Installation

$ npm install --save react-native-image-fit

or

$ yarn add react-native-image-fit

Usage

import { ImageViewer } from 'react-native-image-fit';  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'     }}   /> )

ImageViewer Component example

ezgif-3352117320


You May Also Like