1.0.1 • Published 6 years ago

react-native-zoom v1.0.1

Weekly downloads
3
License
MIT
Repository
github
Last release
6 years ago

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>;