├── .babelrc ├── .eslintrc ├── .flowconfig ├── .gitignore ├── .travis.yml ├── .watchmanconfig ├── LICENSE ├── README.md ├── __mocks__ └── react-native.js ├── __tests__ ├── ActionsTest.js ├── ReducersTest.js ├── components │ ├── ProductDetail.js │ └── ProductList.js └── mocks │ └── Store.js ├── index.android.js ├── jestSupport └── scriptProcessor.js ├── makefile ├── package.json └── src ├── actions └── PostersActions.js ├── components ├── PostersNavigator.js ├── ProductDetail.js └── ProductList.js ├── containers └── App.js ├── reducers └── PostersReducers.js ├── routes └── PostersRoutes.js └── store └── PostersStore.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marmelab/Posters_Galore_Android/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marmelab/Posters_Galore_Android/HEAD/.eslintrc -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marmelab/Posters_Galore_Android/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marmelab/Posters_Galore_Android/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marmelab/Posters_Galore_Android/HEAD/.travis.yml -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marmelab/Posters_Galore_Android/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marmelab/Posters_Galore_Android/HEAD/README.md -------------------------------------------------------------------------------- /__mocks__/react-native.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marmelab/Posters_Galore_Android/HEAD/__mocks__/react-native.js -------------------------------------------------------------------------------- /__tests__/ActionsTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marmelab/Posters_Galore_Android/HEAD/__tests__/ActionsTest.js -------------------------------------------------------------------------------- /__tests__/ReducersTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marmelab/Posters_Galore_Android/HEAD/__tests__/ReducersTest.js -------------------------------------------------------------------------------- /__tests__/components/ProductDetail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marmelab/Posters_Galore_Android/HEAD/__tests__/components/ProductDetail.js -------------------------------------------------------------------------------- /__tests__/components/ProductList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marmelab/Posters_Galore_Android/HEAD/__tests__/components/ProductList.js -------------------------------------------------------------------------------- /__tests__/mocks/Store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marmelab/Posters_Galore_Android/HEAD/__tests__/mocks/Store.js -------------------------------------------------------------------------------- /index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marmelab/Posters_Galore_Android/HEAD/index.android.js -------------------------------------------------------------------------------- /jestSupport/scriptProcessor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marmelab/Posters_Galore_Android/HEAD/jestSupport/scriptProcessor.js -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marmelab/Posters_Galore_Android/HEAD/makefile -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marmelab/Posters_Galore_Android/HEAD/package.json -------------------------------------------------------------------------------- /src/actions/PostersActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marmelab/Posters_Galore_Android/HEAD/src/actions/PostersActions.js -------------------------------------------------------------------------------- /src/components/PostersNavigator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marmelab/Posters_Galore_Android/HEAD/src/components/PostersNavigator.js -------------------------------------------------------------------------------- /src/components/ProductDetail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marmelab/Posters_Galore_Android/HEAD/src/components/ProductDetail.js -------------------------------------------------------------------------------- /src/components/ProductList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marmelab/Posters_Galore_Android/HEAD/src/components/ProductList.js -------------------------------------------------------------------------------- /src/containers/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marmelab/Posters_Galore_Android/HEAD/src/containers/App.js -------------------------------------------------------------------------------- /src/reducers/PostersReducers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marmelab/Posters_Galore_Android/HEAD/src/reducers/PostersReducers.js -------------------------------------------------------------------------------- /src/routes/PostersRoutes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marmelab/Posters_Galore_Android/HEAD/src/routes/PostersRoutes.js -------------------------------------------------------------------------------- /src/store/PostersStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marmelab/Posters_Galore_Android/HEAD/src/store/PostersStore.js --------------------------------------------------------------------------------