An app that shows the latest news compiled frm multiple sources. Powered by https://newsapi.org/
Build using React Native
- ✅ Beautiful minimal UI
- ✅ Search articles
- ✅ Brief overview of the article
- ✅ Selectable country source
- ✅ State fully managed with Redux
- ✅ Api calls handled with Redux-sage middleware
Setup react native using the official documentation. facebook.github.io
- clone the repository
- run
npm install
in the repository directory
- get an api key from https://newsapi.org/docs/get-started
- create a file called
key.js
in/src/api
- export the key as
NEWS_API_KEY
eg:export const NEWS_API_KEY = 'YOUR_KEY_HERE';
react-native run-ios
or
react-native run-android