├── .eslintrc.json ├── .gitignore ├── .watchmanconfig ├── LICENSE ├── README.md ├── Zoomable.ios.js ├── index.js ├── package.json └── preview.gif /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leblancexplores/react-native-zoomable/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leblancexplores/react-native-zoomable/HEAD/.watchmanconfig -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leblancexplores/react-native-zoomable/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leblancexplores/react-native-zoomable/HEAD/README.md -------------------------------------------------------------------------------- /Zoomable.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leblancexplores/react-native-zoomable/HEAD/Zoomable.ios.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leblancexplores/react-native-zoomable/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leblancexplores/react-native-zoomable/HEAD/package.json -------------------------------------------------------------------------------- /preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leblancexplores/react-native-zoomable/HEAD/preview.gif --------------------------------------------------------------------------------