├── .babelrc ├── .eslintrc.json ├── .flowconfig ├── .gitignore ├── .nvmrc ├── .watchmanconfig ├── App.test.js ├── App ├── components │ ├── Topics.js │ ├── VideoRow │ │ ├── index.js │ │ └── styles.js │ ├── VideoWebView │ │ ├── index.js │ │ └── styles.js │ └── styles.js ├── config │ └── styles.js ├── index.js ├── lib │ ├── getImageSource.js │ └── logger.js └── screens │ └── Home.js ├── README.md ├── app.json └── package.json /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradoyler/newswatch-react-native/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "react-native" 3 | } -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradoyler/newswatch-react-native/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .expo/ 3 | npm-debug.* 4 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 6 -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradoyler/newswatch-react-native/HEAD/App.test.js -------------------------------------------------------------------------------- /App/components/Topics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradoyler/newswatch-react-native/HEAD/App/components/Topics.js -------------------------------------------------------------------------------- /App/components/VideoRow/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradoyler/newswatch-react-native/HEAD/App/components/VideoRow/index.js -------------------------------------------------------------------------------- /App/components/VideoRow/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradoyler/newswatch-react-native/HEAD/App/components/VideoRow/styles.js -------------------------------------------------------------------------------- /App/components/VideoWebView/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradoyler/newswatch-react-native/HEAD/App/components/VideoWebView/index.js -------------------------------------------------------------------------------- /App/components/VideoWebView/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradoyler/newswatch-react-native/HEAD/App/components/VideoWebView/styles.js -------------------------------------------------------------------------------- /App/components/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradoyler/newswatch-react-native/HEAD/App/components/styles.js -------------------------------------------------------------------------------- /App/config/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradoyler/newswatch-react-native/HEAD/App/config/styles.js -------------------------------------------------------------------------------- /App/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradoyler/newswatch-react-native/HEAD/App/index.js -------------------------------------------------------------------------------- /App/lib/getImageSource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradoyler/newswatch-react-native/HEAD/App/lib/getImageSource.js -------------------------------------------------------------------------------- /App/lib/logger.js: -------------------------------------------------------------------------------- 1 | export default console.log -------------------------------------------------------------------------------- /App/screens/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradoyler/newswatch-react-native/HEAD/App/screens/Home.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradoyler/newswatch-react-native/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradoyler/newswatch-react-native/HEAD/app.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradoyler/newswatch-react-native/HEAD/package.json --------------------------------------------------------------------------------