https://github.com/uiheros/react-native-redux-todo-list
React Native Todo List example app which uses Redux for managing app state
https://github.com/uiheros/react-native-redux-todo-list
Last synced: 9 days ago
JSON representation
React Native Todo List example app which uses Redux for managing app state
- Host: GitHub
- URL: https://github.com/uiheros/react-native-redux-todo-list
- Owner: uiheros
- License: mit
- Created: 2016-06-06T12:55:06.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2020-02-15T09:33:43.000Z (about 5 years ago)
- Last Synced: 2024-11-12T21:38:40.919Z (6 months ago)
- Language: JavaScript
- Size: 1.09 MB
- Stars: 43
- Watchers: 8
- Forks: 17
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- fucking-open-source-ios-apps - To Do List (Redux)
README
# react-native-redux-todo-list
A sample todo list app developed by using React Native and Redux.
[](https://dashboard.buddybuild.com/apps/57565cc3ecb54601001fe9d7/build/latest)
[](https://github.com/lukehoban/es6features#readme)
[](http://facebook.github.io/react-native/docs/getting-started.html)
[](https://github.com/uiheros/react-native-redux-todo-list/blob/master/LICENSE)
## How to run the app
### Install react-native
If you don't have `react-native-cli` installed, please get it installed by following the instructions in [Get started with react-native](https://facebook.github.io/react-native/docs/getting-started.html#requirements)
### Clone this repo and install its dependencies
```bash
git clone https://github.com/uiheros/react-native-redux-todo-list.git
cd react-native-redux-todo-list
npm install
```### Start the app
#### For iOS, run
```bash
react-native run-ios
# or
npm run ios```
#### For Android, run
```bash
react-native run-android
# or
npm run android
```### Development
#### Lint the code
```bash
npm run lint
```You can also install the following plugins in your editor/IDE:
- [Eslint plugins](https://github.com/viruschidai/learn-react-ecosystem/blob/master/docs/ESLINT.md)
- [EditorConfig plugin](https://github.com/viruschidai/learn-react-ecosystem/blob/master/docs/EDITORCONFIG.md)