├── .gitignore ├── LICENSE ├── README.md ├── TodoList ├── .babelrc ├── .buckconfig ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .watchmanconfig ├── App.js ├── __tests__ │ └── App.js ├── android │ ├── app │ │ ├── BUCK │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── assets │ │ │ └── fonts │ │ │ │ ├── Entypo.ttf │ │ │ │ ├── EvilIcons.ttf │ │ │ │ ├── FontAwesome.ttf │ │ │ │ ├── Foundation.ttf │ │ │ │ ├── Ionicons.ttf │ │ │ │ ├── MaterialIcons.ttf │ │ │ │ ├── Octicons.ttf │ │ │ │ ├── Roboto.ttf │ │ │ │ ├── Roboto_medium.ttf │ │ │ │ ├── SimpleLineIcons.ttf │ │ │ │ ├── Zocial.ttf │ │ │ │ └── rubicon-icon-font.ttf │ │ │ ├── java │ │ │ └── com │ │ │ │ └── todolist │ │ │ │ ├── MainActivity.java │ │ │ │ └── MainApplication.java │ │ │ └── res │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ └── values │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── keystores │ │ ├── BUCK │ │ └── debug.keystore.properties │ └── settings.gradle ├── app.json ├── index.js ├── ios │ ├── TodoList-tvOS │ │ └── Info.plist │ ├── TodoList-tvOSTests │ │ └── Info.plist │ ├── TodoList.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── TodoList-tvOS.xcscheme │ │ │ └── TodoList.xcscheme │ ├── TodoList │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj │ │ │ └── LaunchScreen.xib │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Info.plist │ │ └── main.m │ └── TodoListTests │ │ ├── Info.plist │ │ └── TodoListTests.m ├── package-lock.json ├── package.json ├── src │ ├── components │ │ ├── About.android.js │ │ ├── About.ios.js │ │ ├── AddTodo.js │ │ ├── TodoItem.js │ │ └── TodoList.js │ ├── images │ │ ├── check.png │ │ ├── check@2x.png │ │ ├── check@3x.png │ │ ├── star.png │ │ ├── star@2x.png │ │ └── star@3x.png │ └── lib │ │ └── api.js └── yarn.lock └── server ├── .gitignore ├── index.js ├── package-lock.json └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules/* -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohop/react-native-todo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohop/react-native-todo/HEAD/README.md -------------------------------------------------------------------------------- /TodoList/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react-native"] 3 | } 4 | -------------------------------------------------------------------------------- /TodoList/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohop/react-native-todo/HEAD/TodoList/.buckconfig -------------------------------------------------------------------------------- /TodoList/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohop/react-native-todo/HEAD/TodoList/.flowconfig -------------------------------------------------------------------------------- /TodoList/.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /TodoList/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohop/react-native-todo/HEAD/TodoList/.gitignore -------------------------------------------------------------------------------- /TodoList/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /TodoList/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohop/react-native-todo/HEAD/TodoList/App.js -------------------------------------------------------------------------------- /TodoList/__tests__/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohop/react-native-todo/HEAD/TodoList/__tests__/App.js -------------------------------------------------------------------------------- /TodoList/android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohop/react-native-todo/HEAD/TodoList/android/app/BUCK -------------------------------------------------------------------------------- /TodoList/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohop/react-native-todo/HEAD/TodoList/android/app/build.gradle -------------------------------------------------------------------------------- /TodoList/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohop/react-native-todo/HEAD/TodoList/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /TodoList/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohop/react-native-todo/HEAD/TodoList/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /TodoList/android/app/src/main/assets/fonts/Entypo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohop/react-native-todo/HEAD/TodoList/android/app/src/main/assets/fonts/Entypo.ttf -------------------------------------------------------------------------------- /TodoList/android/app/src/main/assets/fonts/EvilIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohop/react-native-todo/HEAD/TodoList/android/app/src/main/assets/fonts/EvilIcons.ttf -------------------------------------------------------------------------------- /TodoList/android/app/src/main/assets/fonts/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohop/react-native-todo/HEAD/TodoList/android/app/src/main/assets/fonts/FontAwesome.ttf -------------------------------------------------------------------------------- /TodoList/android/app/src/main/assets/fonts/Foundation.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohop/react-native-todo/HEAD/TodoList/android/app/src/main/assets/fonts/Foundation.ttf -------------------------------------------------------------------------------- /TodoList/android/app/src/main/assets/fonts/Ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohop/react-native-todo/HEAD/TodoList/android/app/src/main/assets/fonts/Ionicons.ttf -------------------------------------------------------------------------------- /TodoList/android/app/src/main/assets/fonts/MaterialIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohop/react-native-todo/HEAD/TodoList/android/app/src/main/assets/fonts/MaterialIcons.ttf -------------------------------------------------------------------------------- /TodoList/android/app/src/main/assets/fonts/Octicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohop/react-native-todo/HEAD/TodoList/android/app/src/main/assets/fonts/Octicons.ttf -------------------------------------------------------------------------------- /TodoList/android/app/src/main/assets/fonts/Roboto.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohop/react-native-todo/HEAD/TodoList/android/app/src/main/assets/fonts/Roboto.ttf -------------------------------------------------------------------------------- /TodoList/android/app/src/main/assets/fonts/Roboto_medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohop/react-native-todo/HEAD/TodoList/android/app/src/main/assets/fonts/Roboto_medium.ttf -------------------------------------------------------------------------------- /TodoList/android/app/src/main/assets/fonts/SimpleLineIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohop/react-native-todo/HEAD/TodoList/android/app/src/main/assets/fonts/SimpleLineIcons.ttf -------------------------------------------------------------------------------- /TodoList/android/app/src/main/assets/fonts/Zocial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohop/react-native-todo/HEAD/TodoList/android/app/src/main/assets/fonts/Zocial.ttf -------------------------------------------------------------------------------- /TodoList/android/app/src/main/assets/fonts/rubicon-icon-font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohop/react-native-todo/HEAD/TodoList/android/app/src/main/assets/fonts/rubicon-icon-font.ttf -------------------------------------------------------------------------------- /TodoList/android/app/src/main/java/com/todolist/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohop/react-native-todo/HEAD/TodoList/android/app/src/main/java/com/todolist/MainActivity.java -------------------------------------------------------------------------------- /TodoList/android/app/src/main/java/com/todolist/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohop/react-native-todo/HEAD/TodoList/android/app/src/main/java/com/todolist/MainApplication.java -------------------------------------------------------------------------------- /TodoList/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohop/react-native-todo/HEAD/TodoList/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /TodoList/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohop/react-native-todo/HEAD/TodoList/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /TodoList/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohop/react-native-todo/HEAD/TodoList/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /TodoList/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohop/react-native-todo/HEAD/TodoList/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /TodoList/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohop/react-native-todo/HEAD/TodoList/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /TodoList/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohop/react-native-todo/HEAD/TodoList/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /TodoList/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohop/react-native-todo/HEAD/TodoList/android/build.gradle -------------------------------------------------------------------------------- /TodoList/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohop/react-native-todo/HEAD/TodoList/android/gradle.properties -------------------------------------------------------------------------------- /TodoList/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohop/react-native-todo/HEAD/TodoList/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /TodoList/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohop/react-native-todo/HEAD/TodoList/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /TodoList/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohop/react-native-todo/HEAD/TodoList/android/gradlew -------------------------------------------------------------------------------- /TodoList/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohop/react-native-todo/HEAD/TodoList/android/gradlew.bat -------------------------------------------------------------------------------- /TodoList/android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohop/react-native-todo/HEAD/TodoList/android/keystores/BUCK -------------------------------------------------------------------------------- /TodoList/android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohop/react-native-todo/HEAD/TodoList/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /TodoList/android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'TodoList' 2 | 3 | include ':app' 4 | -------------------------------------------------------------------------------- /TodoList/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohop/react-native-todo/HEAD/TodoList/app.json -------------------------------------------------------------------------------- /TodoList/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohop/react-native-todo/HEAD/TodoList/index.js -------------------------------------------------------------------------------- /TodoList/ios/TodoList-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohop/react-native-todo/HEAD/TodoList/ios/TodoList-tvOS/Info.plist -------------------------------------------------------------------------------- /TodoList/ios/TodoList-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohop/react-native-todo/HEAD/TodoList/ios/TodoList-tvOSTests/Info.plist -------------------------------------------------------------------------------- /TodoList/ios/TodoList.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohop/react-native-todo/HEAD/TodoList/ios/TodoList.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /TodoList/ios/TodoList.xcodeproj/xcshareddata/xcschemes/TodoList-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohop/react-native-todo/HEAD/TodoList/ios/TodoList.xcodeproj/xcshareddata/xcschemes/TodoList-tvOS.xcscheme -------------------------------------------------------------------------------- /TodoList/ios/TodoList.xcodeproj/xcshareddata/xcschemes/TodoList.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohop/react-native-todo/HEAD/TodoList/ios/TodoList.xcodeproj/xcshareddata/xcschemes/TodoList.xcscheme -------------------------------------------------------------------------------- /TodoList/ios/TodoList/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohop/react-native-todo/HEAD/TodoList/ios/TodoList/AppDelegate.h -------------------------------------------------------------------------------- /TodoList/ios/TodoList/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohop/react-native-todo/HEAD/TodoList/ios/TodoList/AppDelegate.m -------------------------------------------------------------------------------- /TodoList/ios/TodoList/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohop/react-native-todo/HEAD/TodoList/ios/TodoList/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /TodoList/ios/TodoList/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohop/react-native-todo/HEAD/TodoList/ios/TodoList/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /TodoList/ios/TodoList/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohop/react-native-todo/HEAD/TodoList/ios/TodoList/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /TodoList/ios/TodoList/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohop/react-native-todo/HEAD/TodoList/ios/TodoList/Info.plist -------------------------------------------------------------------------------- /TodoList/ios/TodoList/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohop/react-native-todo/HEAD/TodoList/ios/TodoList/main.m -------------------------------------------------------------------------------- /TodoList/ios/TodoListTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohop/react-native-todo/HEAD/TodoList/ios/TodoListTests/Info.plist -------------------------------------------------------------------------------- /TodoList/ios/TodoListTests/TodoListTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohop/react-native-todo/HEAD/TodoList/ios/TodoListTests/TodoListTests.m -------------------------------------------------------------------------------- /TodoList/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohop/react-native-todo/HEAD/TodoList/package-lock.json -------------------------------------------------------------------------------- /TodoList/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohop/react-native-todo/HEAD/TodoList/package.json -------------------------------------------------------------------------------- /TodoList/src/components/About.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohop/react-native-todo/HEAD/TodoList/src/components/About.android.js -------------------------------------------------------------------------------- /TodoList/src/components/About.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohop/react-native-todo/HEAD/TodoList/src/components/About.ios.js -------------------------------------------------------------------------------- /TodoList/src/components/AddTodo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohop/react-native-todo/HEAD/TodoList/src/components/AddTodo.js -------------------------------------------------------------------------------- /TodoList/src/components/TodoItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohop/react-native-todo/HEAD/TodoList/src/components/TodoItem.js -------------------------------------------------------------------------------- /TodoList/src/components/TodoList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohop/react-native-todo/HEAD/TodoList/src/components/TodoList.js -------------------------------------------------------------------------------- /TodoList/src/images/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohop/react-native-todo/HEAD/TodoList/src/images/check.png -------------------------------------------------------------------------------- /TodoList/src/images/check@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohop/react-native-todo/HEAD/TodoList/src/images/check@2x.png -------------------------------------------------------------------------------- /TodoList/src/images/check@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohop/react-native-todo/HEAD/TodoList/src/images/check@3x.png -------------------------------------------------------------------------------- /TodoList/src/images/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohop/react-native-todo/HEAD/TodoList/src/images/star.png -------------------------------------------------------------------------------- /TodoList/src/images/star@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohop/react-native-todo/HEAD/TodoList/src/images/star@2x.png -------------------------------------------------------------------------------- /TodoList/src/images/star@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohop/react-native-todo/HEAD/TodoList/src/images/star@3x.png -------------------------------------------------------------------------------- /TodoList/src/lib/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohop/react-native-todo/HEAD/TodoList/src/lib/api.js -------------------------------------------------------------------------------- /TodoList/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohop/react-native-todo/HEAD/TodoList/yarn.lock -------------------------------------------------------------------------------- /server/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules/* 3 | -------------------------------------------------------------------------------- /server/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohop/react-native-todo/HEAD/server/index.js -------------------------------------------------------------------------------- /server/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohop/react-native-todo/HEAD/server/package-lock.json -------------------------------------------------------------------------------- /server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanohop/react-native-todo/HEAD/server/package.json --------------------------------------------------------------------------------