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

https://github.com/thadeu/react-native-template-app

🎯 Template CRNA Ejecting in order to create React Native App
https://github.com/thadeu/react-native-template-app

crna-eject crna-template react-native

Last synced: about 2 months ago
JSON representation

🎯 Template CRNA Ejecting in order to create React Native App

Awesome Lists containing this project

README

          

# Content

Template CRNA Ejecting in order to React Native App

### Install dependencies

```bash
yarn install or npm install
```

#### Change Name and DisplayName

In ```app.json``` change properties name and displayName to name app

```json
"name": "MyApp",
"displayName": "My App",
```

After run ```react-native eject``` in order to create folders ```android``` and ```ios``` in your project.

### Run Expo

```bash
exp start
```

Wait and then run android or ios command

### Run Android

```bash
react-native run-android
```

### Run iOS

```bash
react-native run-ios
```