This is a simple full native iOS and Android app written in React Native that pulls album data for purchase through an axios AJAX get request API. It renders entirely native device specific native UI through React Native JavaScript. Just posting this here for my fellow Steemers if you want to learn programming or launch your own native mobile cross platform apps go to my GitHub at https://github.com/lewis831/albums to download the source code.
Here is the API used: http://rallycoding.herokuapp.com/api/music_albums
Click here to see a video of the app:
To get started first install Xcode and Android studio then install the following in terminal:
brew install node
brew install watchman
npm install -g react-native-cli
Next after you have downloaded the GitHub "albums" from the link https://github.com/lewis831/albums select the following:
cd albums-master
npm install
To run on iOS simulator run the following:
cd albums-master
react-native run-ios
To run on Android simulator run the following:
cd albums-master
react-native run-android
To learn more check out the React Native documentation to further help you get started: https://facebook.github.io/react-native/docs/getting-started.html