├── .DS_Store ├── .gitignore ├── LICENSE ├── README.md ├── index.js ├── lib ├── ImageViewer.js ├── index.js └── utils.js └── package.json /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahen94/react-native-image-fit/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahen94/react-native-image-fit/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahen94/react-native-image-fit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahen94/react-native-image-fit/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | export { ImageViewer } from './lib'; -------------------------------------------------------------------------------- /lib/ImageViewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahen94/react-native-image-fit/HEAD/lib/ImageViewer.js -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahen94/react-native-image-fit/HEAD/lib/index.js -------------------------------------------------------------------------------- /lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahen94/react-native-image-fit/HEAD/lib/utils.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahen94/react-native-image-fit/HEAD/package.json --------------------------------------------------------------------------------