This is the solutions repo for my Egghead course for building an offline capable news app with React Native and urql.
The API repo for the course is available here.
| iOS | Android |
|---|---|
![]() |
![]() |
This project is built using plain React Native. So to run it locally, ensure you've set up your developer environment as described in the React Native Docs.
Then install the JavaScript dependencies:
yarn
# or
npm install(iOS only) install the native dependencies:
cd ios
pod install
cd ..Run the packager:
yarn startBuild the iOS app:
yarn ios
# or
npm run iosBuild the Android app:
yarn android
# or
npm run android
