Package Exports
- react-native-image-pan-zoom
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (react-native-image-pan-zoom) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Show Cases
Zoom while sliding
Intelligent zoom
Getting Started
Installation
npm i react-native-image-pan-zoom --save
Basic Usage
- Install react-native first
$ npm i react-native -g
- Initialization of a react-native project
$ react-native init myproject
- Then, edit myproject/index.ios.js, like this:
import React, { Component } from 'react';
import {
AppRegistry,
StyleSheet,
Text,
View,
Modal
} from 'react-native';
import ImageZoom from 'react-native-image-pan-zoom';
class ImageZoom extends React.Component {
render: function() {
return (
<ImageZoom cropWidth={Dimensions.get('window').width}
cropHeight={Dimensions.get('window').height}
imageWidth={200}
imageHeight={200}>
<Image style={{width:200, height:200}}
source={{uri:'http://v1.qzone.cc/avatar/201407/07/00/24/53b9782c444ca987.jpg!200x200.jpg'}}/>
</ImageZoom>
)
}
}
AppRegistry.registerComponent('myproject', () => ImageZoom);