├── .eslintrc.js ├── .gitignore ├── .prettierrc.js ├── Example └── index.js ├── README.md ├── babel.config.js ├── index.ts ├── package.json ├── src ├── ListZoomImage │ ├── ListItemAnimated.tsx │ ├── Modal.tsx │ ├── ZoomImageItem.tsx │ └── ZoomImageProvider.tsx ├── ZoomImage │ ├── ItemAnimated.tsx │ └── index.tsx ├── components │ ├── CloseIconBottom.tsx │ ├── CloseIconHeader.tsx │ ├── NextButton.tsx │ ├── PreviousButton.tsx │ ├── next.png │ └── previous.png ├── constants.ts └── responsive.ts ├── tsconfig.json └── tsconfig.spec.json /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native-community', 4 | }; 5 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duongxuannam/react-native-zoom-lightbox/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duongxuannam/react-native-zoom-lightbox/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /Example/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duongxuannam/react-native-zoom-lightbox/HEAD/Example/index.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duongxuannam/react-native-zoom-lightbox/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duongxuannam/react-native-zoom-lightbox/HEAD/babel.config.js -------------------------------------------------------------------------------- /index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duongxuannam/react-native-zoom-lightbox/HEAD/index.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duongxuannam/react-native-zoom-lightbox/HEAD/package.json -------------------------------------------------------------------------------- /src/ListZoomImage/ListItemAnimated.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duongxuannam/react-native-zoom-lightbox/HEAD/src/ListZoomImage/ListItemAnimated.tsx -------------------------------------------------------------------------------- /src/ListZoomImage/Modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duongxuannam/react-native-zoom-lightbox/HEAD/src/ListZoomImage/Modal.tsx -------------------------------------------------------------------------------- /src/ListZoomImage/ZoomImageItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duongxuannam/react-native-zoom-lightbox/HEAD/src/ListZoomImage/ZoomImageItem.tsx -------------------------------------------------------------------------------- /src/ListZoomImage/ZoomImageProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duongxuannam/react-native-zoom-lightbox/HEAD/src/ListZoomImage/ZoomImageProvider.tsx -------------------------------------------------------------------------------- /src/ZoomImage/ItemAnimated.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duongxuannam/react-native-zoom-lightbox/HEAD/src/ZoomImage/ItemAnimated.tsx -------------------------------------------------------------------------------- /src/ZoomImage/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duongxuannam/react-native-zoom-lightbox/HEAD/src/ZoomImage/index.tsx -------------------------------------------------------------------------------- /src/components/CloseIconBottom.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duongxuannam/react-native-zoom-lightbox/HEAD/src/components/CloseIconBottom.tsx -------------------------------------------------------------------------------- /src/components/CloseIconHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duongxuannam/react-native-zoom-lightbox/HEAD/src/components/CloseIconHeader.tsx -------------------------------------------------------------------------------- /src/components/NextButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duongxuannam/react-native-zoom-lightbox/HEAD/src/components/NextButton.tsx -------------------------------------------------------------------------------- /src/components/PreviousButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duongxuannam/react-native-zoom-lightbox/HEAD/src/components/PreviousButton.tsx -------------------------------------------------------------------------------- /src/components/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duongxuannam/react-native-zoom-lightbox/HEAD/src/components/next.png -------------------------------------------------------------------------------- /src/components/previous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duongxuannam/react-native-zoom-lightbox/HEAD/src/components/previous.png -------------------------------------------------------------------------------- /src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duongxuannam/react-native-zoom-lightbox/HEAD/src/constants.ts -------------------------------------------------------------------------------- /src/responsive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duongxuannam/react-native-zoom-lightbox/HEAD/src/responsive.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duongxuannam/react-native-zoom-lightbox/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duongxuannam/react-native-zoom-lightbox/HEAD/tsconfig.spec.json --------------------------------------------------------------------------------