├── .gitignore ├── README.md ├── package.json ├── screenshots └── react-native-zoom-grid.gif ├── src ├── ZoomGrid.tsx ├── ZoomGridList.tsx └── index.tsx └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wassgha/react-native-zoom-grid/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wassgha/react-native-zoom-grid/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wassgha/react-native-zoom-grid/HEAD/package.json -------------------------------------------------------------------------------- /screenshots/react-native-zoom-grid.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wassgha/react-native-zoom-grid/HEAD/screenshots/react-native-zoom-grid.gif -------------------------------------------------------------------------------- /src/ZoomGrid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wassgha/react-native-zoom-grid/HEAD/src/ZoomGrid.tsx -------------------------------------------------------------------------------- /src/ZoomGridList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wassgha/react-native-zoom-grid/HEAD/src/ZoomGridList.tsx -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wassgha/react-native-zoom-grid/HEAD/src/index.tsx -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wassgha/react-native-zoom-grid/HEAD/tsconfig.json --------------------------------------------------------------------------------