├── .babelrc ├── .flowconfig ├── .gitignore ├── .watchmanconfig ├── App.js ├── App.test.js ├── PhotoViewer.js ├── PinchView.js ├── README.md ├── app.json ├── package.json └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericvicenti/react-native-live/HEAD/.babelrc -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericvicenti/react-native-live/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .expo/ 3 | npm-debug.* 4 | -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericvicenti/react-native-live/HEAD/App.js -------------------------------------------------------------------------------- /App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericvicenti/react-native-live/HEAD/App.test.js -------------------------------------------------------------------------------- /PhotoViewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericvicenti/react-native-live/HEAD/PhotoViewer.js -------------------------------------------------------------------------------- /PinchView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericvicenti/react-native-live/HEAD/PinchView.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericvicenti/react-native-live/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericvicenti/react-native-live/HEAD/app.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericvicenti/react-native-live/HEAD/package.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericvicenti/react-native-live/HEAD/yarn.lock --------------------------------------------------------------------------------