├── .babelrc ├── .flowconfig ├── .gitignore ├── .watchmanconfig ├── App.js ├── App.test.js ├── LICENSE ├── README.md ├── app.json ├── app ├── components │ ├── DateView.js │ ├── Input.js │ ├── Title.js │ ├── TodoRowItem.js │ └── styles │ │ ├── DateViewStyles.js │ │ ├── InputStyles.js │ │ ├── TitleStyles.js │ │ └── TodoRowItemStyles.js ├── config │ ├── config.json │ └── index.js ├── containers │ ├── ActiveTodosScreen.js │ ├── CompletedTodosScreen.js │ └── styles │ │ ├── ActiveTodosStyles.js │ │ ├── CommonStyles.js │ │ └── index.js ├── models │ └── Todo.js ├── navigation │ └── AppNavigator.js └── redux │ ├── actions │ └── TodoActionCreators.js │ ├── reducers │ ├── AppReducer.js │ ├── NavReducer.js │ └── TodosReducer.js │ └── store │ └── TodosStore.js ├── main.js └── package.json /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhbhatia/react-native-todo/HEAD/.babelrc -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhbhatia/react-native-todo/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .expo/ 3 | npm-debug.* 4 | -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhbhatia/react-native-todo/HEAD/App.js -------------------------------------------------------------------------------- /App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhbhatia/react-native-todo/HEAD/App.test.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhbhatia/react-native-todo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhbhatia/react-native-todo/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhbhatia/react-native-todo/HEAD/app.json -------------------------------------------------------------------------------- /app/components/DateView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhbhatia/react-native-todo/HEAD/app/components/DateView.js -------------------------------------------------------------------------------- /app/components/Input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhbhatia/react-native-todo/HEAD/app/components/Input.js -------------------------------------------------------------------------------- /app/components/Title.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhbhatia/react-native-todo/HEAD/app/components/Title.js -------------------------------------------------------------------------------- /app/components/TodoRowItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhbhatia/react-native-todo/HEAD/app/components/TodoRowItem.js -------------------------------------------------------------------------------- /app/components/styles/DateViewStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhbhatia/react-native-todo/HEAD/app/components/styles/DateViewStyles.js -------------------------------------------------------------------------------- /app/components/styles/InputStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhbhatia/react-native-todo/HEAD/app/components/styles/InputStyles.js -------------------------------------------------------------------------------- /app/components/styles/TitleStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhbhatia/react-native-todo/HEAD/app/components/styles/TitleStyles.js -------------------------------------------------------------------------------- /app/components/styles/TodoRowItemStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhbhatia/react-native-todo/HEAD/app/components/styles/TodoRowItemStyles.js -------------------------------------------------------------------------------- /app/config/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhbhatia/react-native-todo/HEAD/app/config/config.json -------------------------------------------------------------------------------- /app/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhbhatia/react-native-todo/HEAD/app/config/index.js -------------------------------------------------------------------------------- /app/containers/ActiveTodosScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhbhatia/react-native-todo/HEAD/app/containers/ActiveTodosScreen.js -------------------------------------------------------------------------------- /app/containers/CompletedTodosScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhbhatia/react-native-todo/HEAD/app/containers/CompletedTodosScreen.js -------------------------------------------------------------------------------- /app/containers/styles/ActiveTodosStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhbhatia/react-native-todo/HEAD/app/containers/styles/ActiveTodosStyles.js -------------------------------------------------------------------------------- /app/containers/styles/CommonStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhbhatia/react-native-todo/HEAD/app/containers/styles/CommonStyles.js -------------------------------------------------------------------------------- /app/containers/styles/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhbhatia/react-native-todo/HEAD/app/containers/styles/index.js -------------------------------------------------------------------------------- /app/models/Todo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhbhatia/react-native-todo/HEAD/app/models/Todo.js -------------------------------------------------------------------------------- /app/navigation/AppNavigator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhbhatia/react-native-todo/HEAD/app/navigation/AppNavigator.js -------------------------------------------------------------------------------- /app/redux/actions/TodoActionCreators.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhbhatia/react-native-todo/HEAD/app/redux/actions/TodoActionCreators.js -------------------------------------------------------------------------------- /app/redux/reducers/AppReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhbhatia/react-native-todo/HEAD/app/redux/reducers/AppReducer.js -------------------------------------------------------------------------------- /app/redux/reducers/NavReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhbhatia/react-native-todo/HEAD/app/redux/reducers/NavReducer.js -------------------------------------------------------------------------------- /app/redux/reducers/TodosReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhbhatia/react-native-todo/HEAD/app/redux/reducers/TodosReducer.js -------------------------------------------------------------------------------- /app/redux/store/TodosStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhbhatia/react-native-todo/HEAD/app/redux/store/TodosStore.js -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhbhatia/react-native-todo/HEAD/main.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishabhbhatia/react-native-todo/HEAD/package.json --------------------------------------------------------------------------------