├── .babelrc ├── .buckconfig ├── .flowconfig ├── .gitignore ├── .watchmanconfig ├── __tests__ ├── index.android.js └── index.ios.js ├── android ├── app │ ├── BUCK │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── 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 ├── components │ ├── Checkbox.js │ ├── Footer.js │ ├── Input.js │ ├── List.js │ └── Title.js ├── config │ └── ReactotronConfig.js ├── containers │ └── App.js ├── index.js ├── redux │ └── todoRedux.js └── store │ └── configureStore.js ├── index.android.js ├── index.ios.js ├── ios ├── TodoList.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── TodoList.xcscheme ├── TodoList │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ └── main.m └── TodoListTests │ ├── Info.plist │ └── TodoListTests.m └── package.json /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react-native"] 3 | } -------------------------------------------------------------------------------- /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabergg/ReactNativeTodoList/HEAD/.buckconfig -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabergg/ReactNativeTodoList/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabergg/ReactNativeTodoList/HEAD/.gitignore -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /__tests__/index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabergg/ReactNativeTodoList/HEAD/__tests__/index.android.js -------------------------------------------------------------------------------- /__tests__/index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabergg/ReactNativeTodoList/HEAD/__tests__/index.ios.js -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabergg/ReactNativeTodoList/HEAD/android/app/BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabergg/ReactNativeTodoList/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabergg/ReactNativeTodoList/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabergg/ReactNativeTodoList/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/com/todolist/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabergg/ReactNativeTodoList/HEAD/android/app/src/main/java/com/todolist/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/todolist/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabergg/ReactNativeTodoList/HEAD/android/app/src/main/java/com/todolist/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabergg/ReactNativeTodoList/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabergg/ReactNativeTodoList/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabergg/ReactNativeTodoList/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabergg/ReactNativeTodoList/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabergg/ReactNativeTodoList/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabergg/ReactNativeTodoList/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabergg/ReactNativeTodoList/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabergg/ReactNativeTodoList/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabergg/ReactNativeTodoList/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabergg/ReactNativeTodoList/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabergg/ReactNativeTodoList/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabergg/ReactNativeTodoList/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabergg/ReactNativeTodoList/HEAD/android/keystores/BUCK -------------------------------------------------------------------------------- /android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabergg/ReactNativeTodoList/HEAD/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'TodoList' 2 | 3 | include ':app' 4 | -------------------------------------------------------------------------------- /app/components/Checkbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabergg/ReactNativeTodoList/HEAD/app/components/Checkbox.js -------------------------------------------------------------------------------- /app/components/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabergg/ReactNativeTodoList/HEAD/app/components/Footer.js -------------------------------------------------------------------------------- /app/components/Input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabergg/ReactNativeTodoList/HEAD/app/components/Input.js -------------------------------------------------------------------------------- /app/components/List.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabergg/ReactNativeTodoList/HEAD/app/components/List.js -------------------------------------------------------------------------------- /app/components/Title.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabergg/ReactNativeTodoList/HEAD/app/components/Title.js -------------------------------------------------------------------------------- /app/config/ReactotronConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabergg/ReactNativeTodoList/HEAD/app/config/ReactotronConfig.js -------------------------------------------------------------------------------- /app/containers/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabergg/ReactNativeTodoList/HEAD/app/containers/App.js -------------------------------------------------------------------------------- /app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabergg/ReactNativeTodoList/HEAD/app/index.js -------------------------------------------------------------------------------- /app/redux/todoRedux.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabergg/ReactNativeTodoList/HEAD/app/redux/todoRedux.js -------------------------------------------------------------------------------- /app/store/configureStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabergg/ReactNativeTodoList/HEAD/app/store/configureStore.js -------------------------------------------------------------------------------- /index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabergg/ReactNativeTodoList/HEAD/index.android.js -------------------------------------------------------------------------------- /index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabergg/ReactNativeTodoList/HEAD/index.ios.js -------------------------------------------------------------------------------- /ios/TodoList.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabergg/ReactNativeTodoList/HEAD/ios/TodoList.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/TodoList.xcodeproj/xcshareddata/xcschemes/TodoList.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabergg/ReactNativeTodoList/HEAD/ios/TodoList.xcodeproj/xcshareddata/xcschemes/TodoList.xcscheme -------------------------------------------------------------------------------- /ios/TodoList/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabergg/ReactNativeTodoList/HEAD/ios/TodoList/AppDelegate.h -------------------------------------------------------------------------------- /ios/TodoList/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabergg/ReactNativeTodoList/HEAD/ios/TodoList/AppDelegate.m -------------------------------------------------------------------------------- /ios/TodoList/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabergg/ReactNativeTodoList/HEAD/ios/TodoList/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ios/TodoList/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabergg/ReactNativeTodoList/HEAD/ios/TodoList/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/TodoList/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabergg/ReactNativeTodoList/HEAD/ios/TodoList/Info.plist -------------------------------------------------------------------------------- /ios/TodoList/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabergg/ReactNativeTodoList/HEAD/ios/TodoList/main.m -------------------------------------------------------------------------------- /ios/TodoListTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabergg/ReactNativeTodoList/HEAD/ios/TodoListTests/Info.plist -------------------------------------------------------------------------------- /ios/TodoListTests/TodoListTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabergg/ReactNativeTodoList/HEAD/ios/TodoListTests/TodoListTests.m -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabergg/ReactNativeTodoList/HEAD/package.json --------------------------------------------------------------------------------