react-native-zoom
v1.0.1
Published
Zoom view for react native
Downloads
11
Maintainers
Readme
Get Started
Installation
npm i react-native-zoom --save
or
yarn add react-native-zoom
Usage
import { ZoomView } from "react-native-zoom";
<ImageZoom
cropWidth={Dimensions.get("window").width}
cropHeight={Dimensions.get("window").height}
imageWidth={200}
imageHeight={200}
>
<Image style={{ width: 200, height: 200 }} source={{ uri: "URL" }} />
</ImageZoom>;