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

https://github.com/do-community/mysocialnetwork

Tutorial code for "How To Use Routing with React Navigation in React Native" and "Introduction to Using Redux in a React Native App".
https://github.com/do-community/mysocialnetwork

Last synced: about 1 year ago
JSON representation

Tutorial code for "How To Use Routing with React Navigation in React Native" and "Introduction to Using Redux in a React Native App".

Awesome Lists containing this project

README

          

# MySocialNetwork

A sample React Native app to supplement the following tutorials:

* [Routing with React Navigation in React Native](https://www.digitalocean.com/community/tutorials/react-react-native-navigation)
* [Introduction to Using Redux in a React Native App](https://www.digitalocean.com/community/tutorials/react-react-native-redux)

This is an updated version of [MyAlligatorFace](https://github.com/alligatorio/MyAlligatorFace).

## Starting the Project

First, clone the project:

```
git clone https://github.com/do-community/MySocialNetwork.git
```

### Navigation Complete

If you wish to view the complete React Native and React Navigation tutorial, checkout the `master` branch:

```
git checkout master
```

### Redux Starter

If you wish to follow along with React Native and Redux tutorial, checkout the `redux-starter` branch:

```
git checkout redux-starter
```

### Redux Complete

If you wish to view the complete React Native and Redux tutorial project, checkout the `redux` branch:

```
git checkout redux
```

## Starting Up

Navigate to the project directory:

```
cd MySocialNetwork
```

Install packages:

```
npm install
```

### iOS development

If you intend to work with iOS, you may need to navigate to the `ios` directory:

```
cd ios
```

And install additional packages:

```
pod install
```