An open API service indexing awesome lists of open source software.

https://github.com/devinceble/books

Books - A repository for Introduction to cross platform native mobile app using React Native. API: https://goo.gl/dcJszC
https://github.com/devinceble/books

react-native react-native-app tutorial tutorials

Last synced: 3 months ago
JSON representation

Books - A repository for Introduction to cross platform native mobile app using React Native. API: https://goo.gl/dcJszC

Awesome Lists containing this project

README

          

## Introduction to cross platform native mobile app using React Native

*** Source Code: https://git.io/vbiLi ***

### Creating Books React Native Project

Objectives:
[X] 1. Create a React-Native Project using create-react-native-app tool
[ ] 2. Create a static View for a List of Books.
[ ] 3. Create a method to Get List of Books via REST.
[ ] 4. Create a method to Create a Book via REST.
[ ] 5. Create a method to Edit a Book via REST.
[ ] 6. Create a method to Delete a Book via REST.
[ ] ...
---

## Part I - Create a React-Native Project
---

### I. Install create-react-native-app npm package
```bash
# Using NPM
$ npm install -g create-react-native-app

# Using YARN
$ yarn global add create-react-native-app
```
---
### II. Create your first React-Native Project
```bash
# Using create-react-native-app
$ create-react-native-app Books # replace Books with your Project Name
```

---
### III. Install Exponents App on your phone.
https://expo.io/tools
---
### IV. Running Local Development Server
```bash
# Using NPM
$ npm start

# Using YARN
$ yarn start
```
---