React Native app that lets users search for images, displays thumbnails in a grid list, and a detailed view of individual selected images
- Clone the repository to your local machine
- Run
npm install
to install all dependencies in package.json - Create a new
env.js
file in the root folder of the app. - Configure
env.js
(see step above) with your own api key from pixabay.com and any api specific variables you want to include. Here is an example configuration:export const env = { API_KEY: {YOUR_KEY}, BASE_URL: 'https://pixabay.com/api/', apiKeyPrepend: '?key=', queryPrePend: '&q=' }
- Add
env.js
to your gitignore file - Run
react-native run-ios
orreact-native run-android