├── .editorconfig ├── .gitignore ├── .prettierrc ├── LICENSE ├── README.md ├── index.d.ts ├── index.js ├── package.json ├── rollup.config.js ├── src ├── ReactNativeZoomableView.tsx ├── ReactNativeZoomableViewWithGestures.tsx ├── index.tsx └── typings │ └── index.d.ts └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DuDigital/react-native-zoomable-view/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DuDigital/react-native-zoomable-view/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DuDigital/react-native-zoomable-view/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DuDigital/react-native-zoomable-view/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DuDigital/react-native-zoomable-view/HEAD/README.md -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DuDigital/react-native-zoomable-view/HEAD/index.d.ts -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DuDigital/react-native-zoomable-view/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DuDigital/react-native-zoomable-view/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/ReactNativeZoomableView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DuDigital/react-native-zoomable-view/HEAD/src/ReactNativeZoomableView.tsx -------------------------------------------------------------------------------- /src/ReactNativeZoomableViewWithGestures.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DuDigital/react-native-zoomable-view/HEAD/src/ReactNativeZoomableViewWithGestures.tsx -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DuDigital/react-native-zoomable-view/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/typings/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DuDigital/react-native-zoomable-view/HEAD/src/typings/index.d.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DuDigital/react-native-zoomable-view/HEAD/tsconfig.json --------------------------------------------------------------------------------