├── .babelrc ├── .flowconfig ├── .github └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .vscode └── launch.json ├── .watchmanconfig ├── App.js ├── LICENSE ├── NOTICE ├── README.md ├── android ├── app │ ├── BUCK │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── notes │ │ │ ├── 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.android.js ├── index.ios.js ├── ios ├── notes-tvOS │ └── Info.plist ├── notes-tvOSTests │ └── Info.plist ├── notes.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── adrianha.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ ├── xcshareddata │ │ └── xcschemes │ │ │ ├── notes-tvOS.xcscheme │ │ │ └── notes.xcscheme │ └── xcuserdata │ │ └── adrianha.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── notes │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ └── main.m └── notesTests │ ├── Info.plist │ └── notesTests.m ├── jsconfig.json ├── package.json ├── src ├── redux │ ├── actions │ │ ├── index.js │ │ └── notes.js │ ├── reducers │ │ └── notes.js │ └── store.js ├── screens │ ├── Loading.js │ ├── NoteDetailsScreen.js │ ├── NoteListScreen.js │ └── index.js └── theme.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-mobile-react-native-notes-tutorial/HEAD/.babelrc -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-mobile-react-native-notes-tutorial/HEAD/.flowconfig -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-mobile-react-native-notes-tutorial/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-mobile-react-native-notes-tutorial/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-mobile-react-native-notes-tutorial/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-mobile-react-native-notes-tutorial/HEAD/App.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-mobile-react-native-notes-tutorial/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-mobile-react-native-notes-tutorial/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-mobile-react-native-notes-tutorial/HEAD/README.md -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-mobile-react-native-notes-tutorial/HEAD/android/app/BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-mobile-react-native-notes-tutorial/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-mobile-react-native-notes-tutorial/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-mobile-react-native-notes-tutorial/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/com/notes/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-mobile-react-native-notes-tutorial/HEAD/android/app/src/main/java/com/notes/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/notes/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-mobile-react-native-notes-tutorial/HEAD/android/app/src/main/java/com/notes/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-mobile-react-native-notes-tutorial/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/amazon-archives/aws-mobile-react-native-notes-tutorial/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/amazon-archives/aws-mobile-react-native-notes-tutorial/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/amazon-archives/aws-mobile-react-native-notes-tutorial/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-mobile-react-native-notes-tutorial/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-mobile-react-native-notes-tutorial/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-mobile-react-native-notes-tutorial/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-mobile-react-native-notes-tutorial/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-mobile-react-native-notes-tutorial/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-mobile-react-native-notes-tutorial/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-mobile-react-native-notes-tutorial/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-mobile-react-native-notes-tutorial/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-mobile-react-native-notes-tutorial/HEAD/android/keystores/BUCK -------------------------------------------------------------------------------- /android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-mobile-react-native-notes-tutorial/HEAD/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'notes' 2 | 3 | include ':app' 4 | -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-mobile-react-native-notes-tutorial/HEAD/app.json -------------------------------------------------------------------------------- /index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-mobile-react-native-notes-tutorial/HEAD/index.android.js -------------------------------------------------------------------------------- /index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-mobile-react-native-notes-tutorial/HEAD/index.ios.js -------------------------------------------------------------------------------- /ios/notes-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-mobile-react-native-notes-tutorial/HEAD/ios/notes-tvOS/Info.plist -------------------------------------------------------------------------------- /ios/notes-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-mobile-react-native-notes-tutorial/HEAD/ios/notes-tvOSTests/Info.plist -------------------------------------------------------------------------------- /ios/notes.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-mobile-react-native-notes-tutorial/HEAD/ios/notes.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/notes.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-mobile-react-native-notes-tutorial/HEAD/ios/notes.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/notes.xcodeproj/project.xcworkspace/xcuserdata/adrianha.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-mobile-react-native-notes-tutorial/HEAD/ios/notes.xcodeproj/project.xcworkspace/xcuserdata/adrianha.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /ios/notes.xcodeproj/xcshareddata/xcschemes/notes-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-mobile-react-native-notes-tutorial/HEAD/ios/notes.xcodeproj/xcshareddata/xcschemes/notes-tvOS.xcscheme -------------------------------------------------------------------------------- /ios/notes.xcodeproj/xcshareddata/xcschemes/notes.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-mobile-react-native-notes-tutorial/HEAD/ios/notes.xcodeproj/xcshareddata/xcschemes/notes.xcscheme -------------------------------------------------------------------------------- /ios/notes.xcodeproj/xcuserdata/adrianha.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-mobile-react-native-notes-tutorial/HEAD/ios/notes.xcodeproj/xcuserdata/adrianha.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /ios/notes/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-mobile-react-native-notes-tutorial/HEAD/ios/notes/AppDelegate.h -------------------------------------------------------------------------------- /ios/notes/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-mobile-react-native-notes-tutorial/HEAD/ios/notes/AppDelegate.m -------------------------------------------------------------------------------- /ios/notes/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-mobile-react-native-notes-tutorial/HEAD/ios/notes/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ios/notes/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-mobile-react-native-notes-tutorial/HEAD/ios/notes/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/notes/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-mobile-react-native-notes-tutorial/HEAD/ios/notes/Info.plist -------------------------------------------------------------------------------- /ios/notes/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-mobile-react-native-notes-tutorial/HEAD/ios/notes/main.m -------------------------------------------------------------------------------- /ios/notesTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-mobile-react-native-notes-tutorial/HEAD/ios/notesTests/Info.plist -------------------------------------------------------------------------------- /ios/notesTests/notesTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-mobile-react-native-notes-tutorial/HEAD/ios/notesTests/notesTests.m -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-mobile-react-native-notes-tutorial/HEAD/jsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-mobile-react-native-notes-tutorial/HEAD/package.json -------------------------------------------------------------------------------- /src/redux/actions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-mobile-react-native-notes-tutorial/HEAD/src/redux/actions/index.js -------------------------------------------------------------------------------- /src/redux/actions/notes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-mobile-react-native-notes-tutorial/HEAD/src/redux/actions/notes.js -------------------------------------------------------------------------------- /src/redux/reducers/notes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-mobile-react-native-notes-tutorial/HEAD/src/redux/reducers/notes.js -------------------------------------------------------------------------------- /src/redux/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-mobile-react-native-notes-tutorial/HEAD/src/redux/store.js -------------------------------------------------------------------------------- /src/screens/Loading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-mobile-react-native-notes-tutorial/HEAD/src/screens/Loading.js -------------------------------------------------------------------------------- /src/screens/NoteDetailsScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-mobile-react-native-notes-tutorial/HEAD/src/screens/NoteDetailsScreen.js -------------------------------------------------------------------------------- /src/screens/NoteListScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-mobile-react-native-notes-tutorial/HEAD/src/screens/NoteListScreen.js -------------------------------------------------------------------------------- /src/screens/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-mobile-react-native-notes-tutorial/HEAD/src/screens/index.js -------------------------------------------------------------------------------- /src/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-mobile-react-native-notes-tutorial/HEAD/src/theme.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-mobile-react-native-notes-tutorial/HEAD/yarn.lock --------------------------------------------------------------------------------