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".
- Host: GitHub
- URL: https://github.com/do-community/mysocialnetwork
- Owner: do-community
- Created: 2020-08-20T21:56:11.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-08-20T22:03:11.000Z (almost 6 years ago)
- Last Synced: 2025-03-28T00:44:07.614Z (about 1 year ago)
- Language: Java
- Homepage:
- Size: 275 KB
- Stars: 8
- Watchers: 6
- Forks: 11
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```