├── .gitignore ├── README.md ├── android ├── MyApplication │ ├── .gitignore │ ├── .idea │ │ ├── .gitignore │ │ ├── .name │ │ ├── compiler.xml │ │ ├── gradle.xml │ │ ├── misc.xml │ │ └── vcs.xml │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── myapplication │ │ │ │ └── ExampleInstrumentedTest.kt │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── myapplication │ │ │ │ │ ├── MainActivity.kt │ │ │ │ │ ├── auth │ │ │ │ │ ├── model │ │ │ │ │ │ └── User.kt │ │ │ │ │ ├── ui │ │ │ │ │ │ ├── ConfirmSignUpScreen.kt │ │ │ │ │ │ ├── ForgotPasswordScreen.kt │ │ │ │ │ │ ├── LoginScreen.kt │ │ │ │ │ │ └── SignUpScreen.kt │ │ │ │ │ └── viewmodel │ │ │ │ │ │ └── AuthViewModel.kt │ │ │ │ │ ├── chat │ │ │ │ │ ├── model │ │ │ │ │ │ ├── ChatRoom.kt │ │ │ │ │ │ └── Message.kt │ │ │ │ │ ├── ui │ │ │ │ │ │ ├── ChatRoomsScreen.kt │ │ │ │ │ │ └── MessagesScreen.kt │ │ │ │ │ └── viewmodel │ │ │ │ │ │ ├── ChatRoomsViewModel.kt │ │ │ │ │ │ └── MessagesViewModel.kt │ │ │ │ │ ├── posts │ │ │ │ │ ├── model │ │ │ │ │ │ ├── Comment.kt │ │ │ │ │ │ └── Post.kt │ │ │ │ │ ├── ui │ │ │ │ │ │ ├── NewPostScreen.kt │ │ │ │ │ │ ├── PostDetailsScreen.kt │ │ │ │ │ │ └── PostsScreen.kt │ │ │ │ │ └── viewmodel │ │ │ │ │ │ └── PostsViewModel.kt │ │ │ │ │ ├── ui │ │ │ │ │ └── theme │ │ │ │ │ │ ├── Color.kt │ │ │ │ │ │ ├── Theme.kt │ │ │ │ │ │ └── Type.kt │ │ │ │ │ └── util │ │ │ │ │ ├── Color.kt │ │ │ │ │ ├── CustomButton.kt │ │ │ │ │ ├── CustomField.kt │ │ │ │ │ ├── ErrorMessage.kt │ │ │ │ │ ├── StringExtensions.kt │ │ │ │ │ └── Theme.kt │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── themes.xml │ │ │ │ └── xml │ │ │ │ ├── backup_rules.xml │ │ │ │ └── data_extraction_rules.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── myapplication │ │ │ └── ExampleUnitTest.kt │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── access-photo-gallery │ ├── .gitignore │ ├── .idea │ │ ├── .gitignore │ │ ├── compiler.xml │ │ ├── gradle.xml │ │ ├── jarRepositories.xml │ │ ├── misc.xml │ │ └── vcs.xml │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── kiloloco │ │ │ │ └── access_photo_gallery │ │ │ │ └── ExampleInstrumentedTest.kt │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── kiloloco │ │ │ │ │ └── access_photo_gallery │ │ │ │ │ ├── MainActivity.kt │ │ │ │ │ └── ui │ │ │ │ │ └── theme │ │ │ │ │ ├── Color.kt │ │ │ │ │ ├── Shape.kt │ │ │ │ │ ├── Theme.kt │ │ │ │ │ └── Type.kt │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── values-night │ │ │ │ └── themes.xml │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── themes.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── kiloloco │ │ │ └── access_photo_gallery │ │ │ └── ExampleUnitTest.kt │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── amplify-auth-web-ui-android │ ├── README.md │ └── proto │ │ ├── .gitignore │ │ ├── .idea │ │ ├── .name │ │ ├── codeStyles │ │ │ ├── Project.xml │ │ │ └── codeStyleConfig.xml │ │ ├── gradle.xml │ │ ├── jarRepositories.xml │ │ ├── misc.xml │ │ ├── runConfigurations.xml │ │ └── vcs.xml │ │ ├── amplify.json │ │ ├── amplify │ │ ├── .config │ │ │ └── project-config.json │ │ ├── backend │ │ │ ├── auth │ │ │ │ └── authwebuid2768e4b │ │ │ │ │ ├── authwebuid2768e4b-cloudformation-template.yml │ │ │ │ │ └── parameters.json │ │ │ └── backend-config.json │ │ └── team-provider-info.json │ │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── kiloloco │ │ │ │ └── auth_web_ui_proto │ │ │ │ └── ExampleInstrumentedTest.kt │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── kiloloco │ │ │ │ │ └── auth_web_ui_proto │ │ │ │ │ ├── AuthActivity.kt │ │ │ │ │ ├── AuthApplication.kt │ │ │ │ │ ├── MainActivity.kt │ │ │ │ │ └── SessionActivity.kt │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── layout │ │ │ │ ├── activity_auth.xml │ │ │ │ ├── activity_main.xml │ │ │ │ └── activity_session.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── kiloloco │ │ │ └── auth_web_ui_proto │ │ │ └── ExampleUnitTest.kt │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle ├── amplify-datastore-crud │ ├── .gitignore │ ├── .idea │ │ ├── .gitignore │ │ ├── compiler.xml │ │ ├── gradle.xml │ │ ├── jarRepositories.xml │ │ ├── misc.xml │ │ └── vcs.xml │ ├── .vscode │ │ └── settings.json │ ├── amplify │ │ ├── .config │ │ │ └── project-config.json │ │ ├── backend │ │ │ ├── api │ │ │ │ └── AndroidAmplifyDataStoreCRUD │ │ │ │ │ ├── parameters.json │ │ │ │ │ ├── schema.graphql │ │ │ │ │ ├── stacks │ │ │ │ │ └── CustomResources.json │ │ │ │ │ └── transform.conf.json │ │ │ ├── backend-config.json │ │ │ └── tags.json │ │ ├── cli.json │ │ └── team-provider-info.json │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── kiloloco │ │ │ │ └── amplify_datastore_crud │ │ │ │ └── ExampleInstrumentedTest.kt │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ ├── amplifyframework │ │ │ │ │ └── datastore │ │ │ │ │ │ └── generated │ │ │ │ │ │ └── model │ │ │ │ │ │ ├── AmplifyModelProvider.java │ │ │ │ │ │ └── HotModel.java │ │ │ │ │ └── kiloloco │ │ │ │ │ └── amplify_datastore_crud │ │ │ │ │ ├── MainActivity.kt │ │ │ │ │ └── ui │ │ │ │ │ └── theme │ │ │ │ │ ├── Color.kt │ │ │ │ │ ├── Shape.kt │ │ │ │ │ ├── Theme.kt │ │ │ │ │ └── Type.kt │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── values-night │ │ │ │ └── themes.xml │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── themes.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── kiloloco │ │ │ └── amplify_datastore_crud │ │ │ └── ExampleUnitTest.kt │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── local.properties │ └── settings.gradle ├── camera-jetpack-compose │ ├── .gitignore │ ├── .idea │ │ ├── .gitignore │ │ ├── .name │ │ ├── compiler.xml │ │ ├── gradle.xml │ │ ├── misc.xml │ │ └── vcs.xml │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── camerajetpackcomposevideo │ │ │ │ └── ExampleInstrumentedTest.kt │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── camerajetpackcomposevideo │ │ │ │ │ ├── CameraView.kt │ │ │ │ │ ├── MainActivity.kt │ │ │ │ │ └── ui │ │ │ │ │ └── theme │ │ │ │ │ ├── Color.kt │ │ │ │ │ ├── Shape.kt │ │ │ │ │ ├── Theme.kt │ │ │ │ │ └── Type.kt │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── themes.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── camerajetpackcomposevideo │ │ │ └── ExampleUnitTest.kt │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── compose-for-beginners │ ├── .gitignore │ ├── .idea │ │ ├── $CACHE_FILE$ │ │ ├── .gitignore │ │ ├── codeStyles │ │ │ ├── Project.xml │ │ │ └── codeStyleConfig.xml │ │ ├── compiler.xml │ │ ├── gradle.xml │ │ ├── jarRepositories.xml │ │ ├── misc.xml │ │ └── vcs.xml │ ├── README.md │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── kiloloco │ │ │ │ └── compose_for_beginners │ │ │ │ └── ExampleInstrumentedTest.kt │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── kiloloco │ │ │ │ │ └── compose_for_beginners │ │ │ │ │ ├── MainActivity.kt │ │ │ │ │ └── ui │ │ │ │ │ ├── Color.kt │ │ │ │ │ ├── Shape.kt │ │ │ │ │ ├── Theme.kt │ │ │ │ │ └── Type.kt │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── values-night │ │ │ │ └── themes.xml │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── themes.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── kiloloco │ │ │ └── compose_for_beginners │ │ │ └── ExampleUnitTest.kt │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── jetpack-compose-amplify-auth-flow │ ├── .gitignore │ ├── .idea │ │ ├── .gitignore │ │ ├── .name │ │ ├── compiler.xml │ │ ├── gradle.xml │ │ ├── inspectionProfiles │ │ │ └── Project_Default.xml │ │ ├── misc.xml │ │ └── vcs.xml │ ├── amplify │ │ ├── .config │ │ │ └── project-config.json │ │ ├── README.md │ │ ├── backend │ │ │ ├── auth │ │ │ │ └── jetpackcomposeamplif4bd96138 │ │ │ │ │ └── cli-inputs.json │ │ │ ├── backend-config.json │ │ │ ├── tags.json │ │ │ └── types │ │ │ │ └── amplify-dependent-resources-ref.d.ts │ │ ├── cli.json │ │ ├── hooks │ │ │ └── README.md │ │ └── team-provider-info.json │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── authflow │ │ │ │ └── ExampleInstrumentedTest.kt │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── authflow │ │ │ │ │ ├── AmplifyService.kt │ │ │ │ │ ├── AuthViewModel.kt │ │ │ │ │ ├── MainActivity.kt │ │ │ │ │ ├── Screens.kt │ │ │ │ │ ├── UIStates.kt │ │ │ │ │ └── ui │ │ │ │ │ └── theme │ │ │ │ │ ├── Color.kt │ │ │ │ │ ├── Shape.kt │ │ │ │ │ ├── Theme.kt │ │ │ │ │ └── Type.kt │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── themes.xml │ │ │ │ └── xml │ │ │ │ ├── backup_rules.xml │ │ │ │ └── data_extraction_rules.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── authflow │ │ │ └── ExampleUnitTest.kt │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── jetpack-compose-nav-pass-data │ ├── .gitignore │ ├── .idea │ │ ├── .gitignore │ │ ├── compiler.xml │ │ ├── gradle.xml │ │ ├── jarRepositories.xml │ │ ├── misc.xml │ │ └── vcs.xml │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── kiloloco │ │ │ │ └── jetpack_compose_nav_pass_data │ │ │ │ └── ExampleInstrumentedTest.kt │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── kiloloco │ │ │ │ │ └── jetpack_compose_nav_pass_data │ │ │ │ │ ├── MainActivity.kt │ │ │ │ │ └── ui │ │ │ │ │ ├── Color.kt │ │ │ │ │ ├── Shape.kt │ │ │ │ │ ├── Theme.kt │ │ │ │ │ └── Type.kt │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── values-night │ │ │ │ └── themes.xml │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── themes.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── kiloloco │ │ │ └── jetpack_compose_nav_pass_data │ │ │ └── ExampleUnitTest.kt │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── jetpack-compose-pagination │ ├── .gitignore │ ├── .idea │ │ ├── .gitignore │ │ ├── compiler.xml │ │ ├── gradle.xml │ │ ├── jarRepositories.xml │ │ ├── misc.xml │ │ └── vcs.xml │ ├── README.md │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── kiloloco │ │ │ │ └── jetpack_compose_pagination │ │ │ │ └── ExampleInstrumentedTest.kt │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── kiloloco │ │ │ │ │ └── jetpack_compose_pagination │ │ │ │ │ ├── Animal.kt │ │ │ │ │ ├── MainActivity.kt │ │ │ │ │ ├── MainActivityViewModel.kt │ │ │ │ │ └── ui │ │ │ │ │ ├── Color.kt │ │ │ │ │ ├── Shape.kt │ │ │ │ │ ├── Theme.kt │ │ │ │ │ └── Type.kt │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── values-night │ │ │ │ └── themes.xml │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── themes.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── kiloloco │ │ │ └── jetpack_compose_pagination │ │ │ └── ExampleUnitTest.kt │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── lestry │ ├── .gitignore │ ├── .idea │ │ ├── .gitignore │ │ ├── compiler.xml │ │ ├── gradle.xml │ │ ├── jarRepositories.xml │ │ ├── misc.xml │ │ ├── runConfigurations.xml │ │ └── vcs.xml │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── kiloloco │ │ │ │ └── lestry │ │ │ │ └── ExampleInstrumentedTest.kt │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── kiloloco │ │ │ │ │ └── lestry │ │ │ │ │ └── MainActivity.kt │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── layout │ │ │ │ └── activity_main.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── values-night │ │ │ │ └── themes.xml │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── themes.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── kiloloco │ │ │ └── lestry │ │ │ └── ExampleUnitTest.kt │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── passing-data-with-safe-args │ ├── .gitignore │ ├── .idea │ │ ├── .name │ │ ├── codeStyles │ │ │ ├── Project.xml │ │ │ └── codeStyleConfig.xml │ │ ├── gradle.xml │ │ ├── jarRepositories.xml │ │ ├── misc.xml │ │ ├── runConfigurations.xml │ │ └── vcs.xml │ ├── blog │ │ ├── app │ │ │ ├── .gitignore │ │ │ ├── build.gradle │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ ├── androidTest │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── kiloloco │ │ │ │ │ └── passing_data │ │ │ │ │ └── ExampleInstrumentedTest.kt │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ │ └── com │ │ │ │ │ │ └── kiloloco │ │ │ │ │ │ └── passing_data │ │ │ │ │ │ ├── MainActivity.kt │ │ │ │ │ │ ├── User.kt │ │ │ │ │ │ ├── UserDetailsFragment.kt │ │ │ │ │ │ ├── UsersFragment.kt │ │ │ │ │ │ ├── UsersRecyclerViewAdapter.kt │ │ │ │ │ │ └── dummy │ │ │ │ │ │ └── DummyContent.kt │ │ │ │ └── res │ │ │ │ │ ├── drawable-v24 │ │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ │ ├── drawable │ │ │ │ │ └── ic_launcher_background.xml │ │ │ │ │ ├── layout │ │ │ │ │ ├── activity_main.xml │ │ │ │ │ ├── fragment_user_details.xml │ │ │ │ │ ├── fragment_users.xml │ │ │ │ │ └── fragment_users_list.xml │ │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ │ ├── ic_launcher.xml │ │ │ │ │ └── ic_launcher_round.xml │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── navigation │ │ │ │ │ └── nav_graph.xml │ │ │ │ │ └── values │ │ │ │ │ ├── colors.xml │ │ │ │ │ ├── dimens.xml │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── styles.xml │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── kiloloco │ │ │ │ └── passing_data │ │ │ │ └── ExampleUnitTest.kt │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── local.properties │ │ └── settings.gradle │ └── video │ │ ├── .gitignore │ │ ├── .idea │ │ ├── .name │ │ ├── codeStyles │ │ │ ├── Project.xml │ │ │ └── codeStyleConfig.xml │ │ ├── gradle.xml │ │ ├── jarRepositories.xml │ │ ├── misc.xml │ │ ├── runConfigurations.xml │ │ └── vcs.xml │ │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── kiloloco │ │ │ │ └── passing_data │ │ │ │ └── ExampleInstrumentedTest.kt │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── kiloloco │ │ │ │ │ └── passing_data │ │ │ │ │ ├── MainActivity.kt │ │ │ │ │ ├── User.kt │ │ │ │ │ ├── UserDetailsFragment.kt │ │ │ │ │ ├── UsersFragment.kt │ │ │ │ │ ├── UsersRecyclerViewAdapter.kt │ │ │ │ │ └── dummy │ │ │ │ │ └── DummyContent.kt │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── layout │ │ │ │ ├── activity_main.xml │ │ │ │ ├── fragment_user_details.xml │ │ │ │ ├── fragment_users.xml │ │ │ │ └── fragment_users_list.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── navigation │ │ │ │ └── nav_graph.xml │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── dimens.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── kiloloco │ │ │ └── passing_data │ │ │ └── ExampleUnitTest.kt │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle ├── recyclerviewnavigationwithfragments │ ├── .gitignore │ ├── .idea │ │ ├── .name │ │ ├── codeStyles │ │ │ ├── Project.xml │ │ │ └── codeStyleConfig.xml │ │ ├── gradle.xml │ │ ├── jarRepositories.xml │ │ ├── misc.xml │ │ ├── runConfigurations.xml │ │ └── vcs.xml │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── kiloloco │ │ │ │ └── recyclerview_navigation_with_fragments │ │ │ │ └── ExampleInstrumentedTest.kt │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── kiloloco │ │ │ │ │ └── recyclerview_navigation_with_fragments │ │ │ │ │ ├── DetailsFragment.kt │ │ │ │ │ ├── DetailsViewModel.kt │ │ │ │ │ ├── ItemFragment.kt │ │ │ │ │ ├── MainActivity.kt │ │ │ │ │ ├── MyItemRecyclerViewAdapter.kt │ │ │ │ │ └── dummy │ │ │ │ │ └── DummyContent.kt │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── layout │ │ │ │ ├── activity_main.xml │ │ │ │ ├── details_fragment.xml │ │ │ │ ├── fragment_item.xml │ │ │ │ └── fragment_item_list.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── navigation │ │ │ │ └── nav_graph.xml │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── dimens.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── kiloloco │ │ │ └── recyclerview_navigation_with_fragments │ │ │ └── ExampleUnitTest.kt │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── research │ ├── .gradle │ │ ├── 6.1.1 │ │ │ ├── executionHistory │ │ │ │ ├── executionHistory.bin │ │ │ │ └── executionHistory.lock │ │ │ ├── fileChanges │ │ │ │ └── last-build.bin │ │ │ ├── fileContent │ │ │ │ └── fileContent.lock │ │ │ ├── fileHashes │ │ │ │ ├── fileHashes.bin │ │ │ │ ├── fileHashes.lock │ │ │ │ └── resourceHashesCache.bin │ │ │ ├── gc.properties │ │ │ └── javaCompile │ │ │ │ ├── classAnalysis.bin │ │ │ │ ├── jarAnalysis.bin │ │ │ │ ├── javaCompile.lock │ │ │ │ └── taskHistory.bin │ │ ├── buildOutputCleanup │ │ │ ├── buildOutputCleanup.lock │ │ │ ├── cache.properties │ │ │ └── outputFiles.bin │ │ ├── checksums │ │ │ ├── checksums.lock │ │ │ ├── md5-checksums.bin │ │ │ └── sha1-checksums.bin │ │ └── vcs-1 │ │ │ └── gc.properties │ ├── .idea │ │ ├── caches │ │ │ └── build_file_checksums.ser │ │ ├── codeStyles │ │ │ └── Project.xml │ │ ├── libraries │ │ │ ├── Gradle__androidx_activity_activity_1_0_0_aar.xml │ │ │ ├── Gradle__androidx_annotation_annotation_1_1_0_jar.xml │ │ │ ├── Gradle__androidx_appcompat_appcompat_1_1_0_aar.xml │ │ │ ├── Gradle__androidx_appcompat_appcompat_resources_1_1_0_aar.xml │ │ │ ├── Gradle__androidx_arch_core_core_common_2_1_0_jar.xml │ │ │ ├── Gradle__androidx_arch_core_core_runtime_2_0_0_aar.xml │ │ │ ├── Gradle__androidx_collection_collection_1_1_0_jar.xml │ │ │ ├── Gradle__androidx_constraintlayout_constraintlayout_1_1_3_aar.xml │ │ │ ├── Gradle__androidx_constraintlayout_constraintlayout_solver_1_1_3_jar.xml │ │ │ ├── Gradle__androidx_core_core_1_1_0_aar.xml │ │ │ ├── Gradle__androidx_core_core_ktx_1_1_0_aar.xml │ │ │ ├── Gradle__androidx_cursoradapter_cursoradapter_1_0_0_aar.xml │ │ │ ├── Gradle__androidx_customview_customview_1_0_0_aar.xml │ │ │ ├── Gradle__androidx_drawerlayout_drawerlayout_1_0_0_aar.xml │ │ │ ├── Gradle__androidx_fragment_fragment_1_1_0_aar.xml │ │ │ ├── Gradle__androidx_interpolator_interpolator_1_0_0_aar.xml │ │ │ ├── Gradle__androidx_lifecycle_lifecycle_common_2_1_0_jar.xml │ │ │ ├── Gradle__androidx_lifecycle_lifecycle_livedata_2_0_0_aar.xml │ │ │ ├── Gradle__androidx_lifecycle_lifecycle_livedata_core_2_0_0_aar.xml │ │ │ ├── Gradle__androidx_lifecycle_lifecycle_runtime_2_1_0_aar.xml │ │ │ ├── Gradle__androidx_lifecycle_lifecycle_viewmodel_2_1_0_aar.xml │ │ │ ├── Gradle__androidx_loader_loader_1_0_0_aar.xml │ │ │ ├── Gradle__androidx_savedstate_savedstate_1_0_0_aar.xml │ │ │ ├── Gradle__androidx_test_core_1_2_0_aar.xml │ │ │ ├── Gradle__androidx_test_espresso_espresso_core_3_2_0_aar.xml │ │ │ ├── Gradle__androidx_test_espresso_espresso_idling_resource_3_2_0_aar.xml │ │ │ ├── Gradle__androidx_test_ext_junit_1_1_1_aar.xml │ │ │ ├── Gradle__androidx_test_monitor_1_2_0_aar.xml │ │ │ ├── Gradle__androidx_test_runner_1_2_0_aar.xml │ │ │ ├── Gradle__androidx_vectordrawable_vectordrawable_1_1_0_aar.xml │ │ │ ├── Gradle__androidx_vectordrawable_vectordrawable_animated_1_1_0_aar.xml │ │ │ ├── Gradle__androidx_versionedparcelable_versionedparcelable_1_1_0_aar.xml │ │ │ ├── Gradle__androidx_viewpager_viewpager_1_0_0_aar.xml │ │ │ ├── Gradle__com_google_code_findbugs_jsr305_2_0_1_jar.xml │ │ │ ├── Gradle__com_squareup_javawriter_2_1_1_jar.xml │ │ │ ├── Gradle__javax_inject_javax_inject_1_jar.xml │ │ │ ├── Gradle__junit_junit_4_12_jar.xml │ │ │ ├── Gradle__net_sf_kxml_kxml2_2_3_0_jar.xml │ │ │ ├── Gradle__org_hamcrest_hamcrest_core_1_3_jar.xml │ │ │ ├── Gradle__org_hamcrest_hamcrest_integration_1_3_jar.xml │ │ │ ├── Gradle__org_hamcrest_hamcrest_library_1_3_jar.xml │ │ │ ├── Gradle__org_jetbrains_annotations_13_0_jar.xml │ │ │ ├── Gradle__org_jetbrains_kotlin_kotlin_android_extensions_runtime_1_3_72_jar.xml │ │ │ ├── Gradle__org_jetbrains_kotlin_kotlin_stdlib_1_3_72_jar.xml │ │ │ └── Gradle__org_jetbrains_kotlin_kotlin_stdlib_common_1_3_72_jar.xml │ │ ├── modules.xml │ │ ├── modules │ │ │ ├── amplify-auth-web-sign-in.iml │ │ │ └── app │ │ │ │ └── app.iml │ │ ├── vcs.xml │ │ └── workspace.xml │ └── local.properties ├── upload-files-amplify │ ├── .gitignore │ ├── .idea │ │ ├── .gitignore │ │ ├── compiler.xml │ │ ├── gradle.xml │ │ ├── misc.xml │ │ └── vcs.xml │ ├── amplify │ │ ├── .config │ │ │ └── project-config.json │ │ ├── README.md │ │ ├── backend │ │ │ ├── auth │ │ │ │ └── uploadfilesamplify34a04271 │ │ │ │ │ └── cli-inputs.json │ │ │ ├── backend-config.json │ │ │ ├── storage │ │ │ │ └── s37e2d2b41 │ │ │ │ │ └── cli-inputs.json │ │ │ ├── tags.json │ │ │ └── types │ │ │ │ └── amplify-dependent-resources-ref.d.ts │ │ ├── cli.json │ │ ├── hooks │ │ │ └── README.md │ │ └── team-provider-info.json │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── upload_files_amplify │ │ │ │ └── ExampleInstrumentedTest.kt │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── upload_files_amplify │ │ │ │ │ ├── MainActivity.kt │ │ │ │ │ └── ui │ │ │ │ │ └── theme │ │ │ │ │ ├── Color.kt │ │ │ │ │ ├── Shape.kt │ │ │ │ │ ├── Theme.kt │ │ │ │ │ └── Type.kt │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── themes.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── upload_files_amplify │ │ │ └── ExampleUnitTest.kt │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle └── upload-to-s3-android │ ├── .gitignore │ ├── .idea │ ├── .gitignore │ ├── compiler.xml │ ├── gradle.xml │ ├── misc.xml │ └── vcs.xml │ ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── upload_to_s3_android │ │ │ └── ExampleInstrumentedTest.kt │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── upload_to_s3_android │ │ │ │ ├── MainActivity.kt │ │ │ │ └── ui │ │ │ │ └── theme │ │ │ │ ├── Color.kt │ │ │ │ ├── Shape.kt │ │ │ │ ├── Theme.kt │ │ │ │ └── Type.kt │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── upload_to_s3_android │ │ └── ExampleUnitTest.kt │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── apple ├── AmplifyStorageSwiftUIImage │ ├── .gitignore │ ├── .vscode │ │ └── settings.json │ ├── AmplifyStorageSwiftUIImage.xcodeproj │ │ └── project.pbxproj │ ├── AmplifyStorageSwiftUIImage │ │ ├── AmplifyStorageSwiftUIImageApp.swift │ │ ├── Assets.xcassets │ │ │ ├── AccentColor.colorset │ │ │ │ └── Contents.json │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── ContentView.swift │ │ └── Preview Content │ │ │ └── Preview Assets.xcassets │ │ │ └── Contents.json │ └── amplify │ │ ├── .config │ │ └── project-config.json │ │ ├── cli.json │ │ ├── generated │ │ └── models │ │ │ ├── AmplifyModels.swift │ │ │ ├── ChatRoom+Schema.swift │ │ │ ├── ChatRoom.swift │ │ │ ├── LastMessage+Schema.swift │ │ │ ├── LastMessage.swift │ │ │ ├── Message+Schema.swift │ │ │ ├── Message.swift │ │ │ ├── Product+Schema.swift │ │ │ ├── Product.swift │ │ │ ├── User+Schema.swift │ │ │ └── User.swift │ │ └── team-provider-info.json ├── add-package-product-xcode │ ├── Add Package Product.xcodeproj │ │ └── project.pbxproj │ └── Add Package Product │ │ ├── Add_Package_ProductApp.swift │ │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── ContentView.swift │ │ └── Preview Content │ │ └── Preview Assets.xcassets │ │ └── Contents.json ├── amplify-api-realtime-chat │ ├── .gitignore │ ├── .graphqlconfig.yml │ ├── Podfile │ ├── Podfile.lock │ ├── README.md │ ├── amplify-api-realtime-chat.xcodeproj │ │ └── project.pbxproj │ ├── amplify-api-realtime-chat │ │ ├── Assets.xcassets │ │ │ ├── AccentColor.colorset │ │ │ │ └── Contents.json │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Info.plist │ │ ├── Message+Extensions.swift │ │ ├── MessagesView.swift │ │ ├── Preview Content │ │ │ └── Preview Assets.xcassets │ │ │ │ └── Contents.json │ │ ├── SourceOfTruth.swift │ │ └── amplify_api_realtime_chatApp.swift │ └── graphql │ │ └── schema.json ├── amplify-app-ios │ ├── .gitignore │ ├── .graphqlconfig.yml │ ├── Podfile │ ├── Podfile.lock │ ├── amplify-app-ios.xcodeproj │ │ └── project.pbxproj │ ├── amplify-app-ios │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ │ ├── AccentColor.colorset │ │ │ │ └── Contents.json │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── ContentView.swift │ │ ├── Info.plist │ │ ├── Preview Content │ │ │ └── Preview Assets.xcassets │ │ │ │ └── Contents.json │ │ └── amplify_app_iosApp.swift │ └── graphql │ │ └── schema.json ├── amplify-auth-getting-started │ ├── .gitignore │ ├── Podfile │ ├── Podfile.lock │ ├── amplify-auth-getting-started.xcodeproj │ │ └── project.pbxproj │ └── amplify-auth-getting-started │ │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── ContentView.swift │ │ ├── Info.plist │ │ ├── Preview Content │ │ └── Preview Assets.xcassets │ │ │ └── Contents.json │ │ └── amplify_auth_getting_startedApp.swift ├── amplify-auth-web-ui │ ├── README.md │ ├── research │ │ ├── blog │ │ │ └── Auth-Web-UI │ │ │ │ ├── .gitignore │ │ │ │ ├── Auth-Web-UI.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ │ ├── Auth-Web-UI │ │ │ │ ├── Assets.xcassets │ │ │ │ │ ├── AccentColor.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ ├── AuthService.swift │ │ │ │ ├── Auth_Web_UIApp.swift │ │ │ │ ├── Info.plist │ │ │ │ ├── Preview Content │ │ │ │ │ └── Preview Assets.xcassets │ │ │ │ │ │ └── Contents.json │ │ │ │ ├── SessionView.swift │ │ │ │ └── SignInView.swift │ │ │ │ ├── Podfile │ │ │ │ ├── Podfile.lock │ │ │ │ ├── amplify.json │ │ │ │ └── amplify │ │ │ │ ├── .config │ │ │ │ └── project-config.json │ │ │ │ ├── backend │ │ │ │ ├── auth │ │ │ │ │ └── authwebui186baac5 │ │ │ │ │ │ ├── authwebui186baac5-cloudformation-template.yml │ │ │ │ │ │ └── parameters.json │ │ │ │ └── backend-config.json │ │ │ │ └── team-provider-info.json │ │ └── video │ │ │ ├── .gitignore │ │ │ ├── Podfile │ │ │ ├── Podfile.lock │ │ │ ├── amplify-auth-web-sign-in.xcodeproj │ │ │ └── project.pbxproj │ │ │ ├── amplify-auth-web-sign-in │ │ │ ├── Assets.xcassets │ │ │ │ ├── AccentColor.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ ├── AuthService.swift │ │ │ ├── ContentView.swift │ │ │ ├── Info.plist │ │ │ ├── Preview Content │ │ │ │ └── Preview Assets.xcassets │ │ │ │ │ └── Contents.json │ │ │ └── amplify_auth_web_sign_inApp.swift │ │ │ └── amplify │ │ │ ├── .config │ │ │ └── project-config.json │ │ │ ├── backend │ │ │ ├── auth │ │ │ │ └── amplifyauthwebsignin004d5733 │ │ │ │ │ ├── amplifyauthwebsignin004d5733-cloudformation-template.yml │ │ │ │ │ └── parameters.json │ │ │ └── backend-config.json │ │ │ └── team-provider-info.json │ └── video-final │ │ └── Auth-Web-UI │ │ ├── .gitignore │ │ ├── Auth-Web-UI.xcodeproj │ │ └── project.pbxproj │ │ ├── Auth-Web-UI │ │ ├── Assets.xcassets │ │ │ ├── AccentColor.colorset │ │ │ │ └── Contents.json │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── AuthService.swift │ │ ├── Auth_Web_UIApp.swift │ │ ├── ContentView.swift │ │ ├── Info.plist │ │ ├── Preview Content │ │ │ └── Preview Assets.xcassets │ │ │ │ └── Contents.json │ │ ├── SessionView.swift │ │ └── SignInView.swift │ │ ├── Podfile │ │ ├── Podfile.lock │ │ ├── amplify.json │ │ └── amplify │ │ ├── .config │ │ └── project-config.json │ │ ├── backend │ │ ├── auth │ │ │ └── authwebui611b8c4b │ │ │ │ ├── authwebui611b8c4b-cloudformation-template.yml │ │ │ │ └── parameters.json │ │ └── backend-config.json │ │ └── team-provider-info.json ├── amplify-datastore-geo │ ├── .gitignore │ ├── amplify-datastore-geo.xcodeproj │ │ └── project.pbxproj │ ├── amplify-datastore-geo │ │ ├── Assets.xcassets │ │ │ ├── AccentColor.colorset │ │ │ │ └── Contents.json │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── ContentView.swift │ │ ├── Preview Content │ │ │ └── Preview Assets.xcassets │ │ │ │ └── Contents.json │ │ └── amplify_datastore_geoApp.swift │ └── amplify │ │ ├── .config │ │ └── project-config.json │ │ ├── README.md │ │ ├── backend │ │ ├── api │ │ │ └── amplifydatastoregeo │ │ │ │ ├── cli-inputs.json │ │ │ │ ├── parameters.json │ │ │ │ ├── resolvers │ │ │ │ └── README.md │ │ │ │ ├── schema.graphql │ │ │ │ ├── stacks │ │ │ │ └── CustomResources.json │ │ │ │ └── transform.conf.json │ │ ├── auth │ │ │ └── amplifydatastoregeo6444d6a9 │ │ │ │ └── cli-inputs.json │ │ ├── backend-config.json │ │ ├── geo │ │ │ └── map97556dc6 │ │ │ │ ├── cli-inputs.json │ │ │ │ ├── map97556dc6-cloudformation-template.json │ │ │ │ └── parameters.json │ │ ├── tags.json │ │ └── types │ │ │ └── amplify-dependent-resources-ref.d.ts │ │ ├── cli.json │ │ ├── generated │ │ └── models │ │ │ ├── AmplifyModels.swift │ │ │ ├── Location+Schema.swift │ │ │ └── Location.swift │ │ ├── hooks │ │ └── README.md │ │ └── team-provider-info.json ├── amplify-datastore-storage │ ├── .gitignore │ ├── .graphqlconfig.yml │ ├── API.swift │ ├── Podfile │ ├── Podfile.lock │ ├── README.md │ ├── amplify-datastore-storage.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── amplify-datastore-storage.xcscheme │ ├── amplify-datastore-storage │ │ ├── Assets.xcassets │ │ │ ├── AccentColor.colorset │ │ │ │ └── Contents.json │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── CameraView.swift │ │ ├── ContentView.swift │ │ ├── GalleryView.swift │ │ ├── ImagePicker.swift │ │ ├── Info.plist │ │ ├── Preview Content │ │ │ └── Preview Assets.xcassets │ │ │ │ └── Contents.json │ │ └── amplify_datastore_storageApp.swift │ ├── amplify.json │ ├── amplify │ │ ├── .config │ │ │ └── project-config.json │ │ ├── backend │ │ │ ├── api │ │ │ │ └── amplifydatastorestor │ │ │ │ │ ├── parameters.json │ │ │ │ │ ├── schema.graphql │ │ │ │ │ ├── stacks │ │ │ │ │ └── CustomResources.json │ │ │ │ │ └── transform.conf.json │ │ │ ├── auth │ │ │ │ └── amplifydatastorestore9de81b2 │ │ │ │ │ ├── amplifydatastorestore9de81b2-cloudformation-template.yml │ │ │ │ │ └── parameters.json │ │ │ ├── backend-config.json │ │ │ └── storage │ │ │ │ └── s37be4901e │ │ │ │ ├── parameters.json │ │ │ │ ├── s3-cloudformation-template.json │ │ │ │ └── storage-params.json │ │ ├── generated │ │ │ └── models │ │ │ │ ├── AmplifyModels.swift │ │ │ │ ├── Post+Schema.swift │ │ │ │ └── Post.swift │ │ └── team-provider-info.json │ └── graphql │ │ ├── mutations.graphql │ │ ├── queries.graphql │ │ ├── schema.json │ │ └── subscriptions.graphql ├── amplify-ios-import-bucket │ ├── .gitignore │ ├── .vscode │ │ └── settings.json │ ├── Podfile │ ├── Podfile.lock │ ├── amplify-ios-import-bucket.xcodeproj │ │ └── project.pbxproj │ ├── amplify-ios-import-bucket │ │ ├── Assets.xcassets │ │ │ ├── AccentColor.colorset │ │ │ │ └── Contents.json │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── ContentView.swift │ │ ├── Info.plist │ │ ├── Preview Content │ │ │ └── Preview Assets.xcassets │ │ │ │ └── Contents.json │ │ └── amplify_ios_import_bucketApp.swift │ └── amplify │ │ ├── .config │ │ └── project-config.json │ │ ├── README.md │ │ ├── backend │ │ ├── auth │ │ │ └── amplifyiosimportbuck28cafa33 │ │ │ │ ├── amplifyiosimportbuck28cafa33-cloudformation-template.yml │ │ │ │ └── parameters.json │ │ ├── backend-config.json │ │ ├── storage │ │ │ └── amplifyiosimportbuckbff5ae18 │ │ │ │ └── parameters.json │ │ └── tags.json │ │ ├── cli.json │ │ └── team-provider-info.json ├── amplify-ios-multifactor-auth │ ├── .gitignore │ ├── .vscode │ │ └── settings.json │ ├── Podfile │ ├── Podfile.lock │ ├── amplify-ios-multifactor-auth.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── amplify-ios-multifactor-auth.xcscheme │ ├── amplify-ios-multifactor-auth │ │ ├── Assets.xcassets │ │ │ ├── AccentColor.colorset │ │ │ │ └── Contents.json │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── ContentView.swift │ │ ├── Info.plist │ │ ├── Preview Content │ │ │ └── Preview Assets.xcassets │ │ │ │ └── Contents.json │ │ └── amplify_ios_multifactor_authApp.swift │ └── amplify │ │ ├── .config │ │ └── project-config.json │ │ ├── README.md │ │ ├── backend │ │ ├── auth │ │ │ └── amplifyiosmultifactoaccd1fbbaccd1fbb │ │ │ │ ├── amplifyiosmultifactoaccd1fbbaccd1fbb-cloudformation-template.yml │ │ │ │ └── parameters.json │ │ ├── backend-config.json │ │ └── tags.json │ │ ├── cli.json │ │ └── team-provider-info.json ├── amplify-ios-sign-in │ ├── .gitignore │ ├── .vscode │ │ └── settings.json │ ├── Podfile │ ├── Podfile.lock │ ├── amplify-ios-sign-in.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── amplify-ios-sign-in.xcscheme │ ├── amplify-ios-sign-in │ │ ├── Assets.xcassets │ │ │ ├── AccentColor.colorset │ │ │ │ └── Contents.json │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── ContentView.swift │ │ ├── Info.plist │ │ ├── Preview Content │ │ │ └── Preview Assets.xcassets │ │ │ │ └── Contents.json │ │ └── amplify_ios_sign_inApp.swift │ └── amplify │ │ ├── .config │ │ └── project-config.json │ │ ├── README.md │ │ ├── backend │ │ ├── auth │ │ │ └── amplifyiossignin4a6f7a6b │ │ │ │ ├── amplifyiossignin4a6f7a6b-cloudformation-template.yml │ │ │ │ └── parameters.json │ │ ├── backend-config.json │ │ └── tags.json │ │ ├── cli.json │ │ └── team-provider-info.json ├── amplify-storage-getting-started │ ├── .gitignore │ ├── Podfile │ ├── Podfile.lock │ ├── amplify-storage-getting-started.xcodeproj │ │ └── project.pbxproj │ └── amplify-storage-getting-started │ │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── ContentView.swift │ │ ├── Info.plist │ │ ├── Preview Content │ │ └── Preview Assets.xcassets │ │ │ └── Contents.json │ │ └── amplify_storage_getting_startedApp.swift ├── conditional-modifier │ ├── conditional-modifier.xcodeproj │ │ └── project.pbxproj │ └── conditional-modifier │ │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── ContentView.swift │ │ ├── Preview Content │ │ └── Preview Assets.xcassets │ │ │ └── Contents.json │ │ └── conditional_modifierApp.swift ├── device-location-ios │ ├── device-location-ios.xcodeproj │ │ └── project.pbxproj │ └── device-location-ios │ │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── ContentView.swift │ │ ├── DeviceLocationService.swift │ │ ├── Preview Content │ │ └── Preview Assets.xcassets │ │ │ └── Contents.json │ │ └── device_location_iosApp.swift ├── getting-started-with-swiftui │ ├── getting-started-with-swiftui.xcodeproj │ │ └── project.pbxproj │ └── getting-started-with-swiftui │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── ContentView.swift │ │ ├── Info.plist │ │ ├── Preview Content │ │ └── Preview Assets.xcassets │ │ │ └── Contents.json │ │ ├── SceneDelegate.swift │ │ └── getting_started_with_swiftuiApp.swift ├── hello-amplify │ ├── .gitignore │ ├── amplify │ │ ├── .config │ │ │ └── project-config.json │ │ ├── README.md │ │ ├── backend │ │ │ ├── backend-config.json │ │ │ ├── tags.json │ │ │ └── types │ │ │ │ └── amplify-dependent-resources-ref.d.ts │ │ ├── cli.json │ │ ├── hooks │ │ │ └── README.md │ │ └── team-provider-info.json │ ├── hello-amplify.xcodeproj │ │ └── project.pbxproj │ └── hello-amplify │ │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── ContentView.swift │ │ ├── Preview Content │ │ └── Preview Assets.xcassets │ │ │ └── Contents.json │ │ └── hello_amplifyApp.swift ├── macos-navigation │ ├── blog │ │ └── macos-navigation-blog │ │ │ ├── macos-navigation-blog.xcodeproj │ │ │ └── project.pbxproj │ │ │ └── macos-navigation-blog │ │ │ ├── Assets.xcassets │ │ │ ├── AccentColor.colorset │ │ │ │ └── Contents.json │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ │ ├── ContentViews.swift │ │ │ ├── NavigationManagerView.swift │ │ │ ├── Preview Content │ │ │ └── Preview Assets.xcassets │ │ │ │ └── Contents.json │ │ │ ├── macos_navigation_blog.entitlements │ │ │ └── macos_navigation_blogApp.swift │ ├── macos-navigation.xcodeproj │ │ └── project.pbxproj │ ├── macos-navigation │ │ ├── Assets.xcassets │ │ │ ├── AccentColor.colorset │ │ │ │ └── Contents.json │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── ColumnView.swift │ │ ├── ContentViews.swift │ │ ├── Preview Content │ │ │ └── Preview Assets.xcassets │ │ │ │ └── Contents.json │ │ ├── macos_navigation.entitlements │ │ └── macos_navigationApp.swift │ └── video │ │ └── macos-navigation │ │ ├── macos-navigation.xcodeproj │ │ └── project.pbxproj │ │ └── macos-navigation │ │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── ContentView.swift │ │ ├── ContentViews.swift │ │ ├── NavigationManagerView.swift │ │ ├── Preview Content │ │ └── Preview Assets.xcassets │ │ │ └── Contents.json │ │ ├── macos_navigation.entitlements │ │ └── macos_navigationApp.swift ├── migrating-to-combine │ ├── blog │ │ ├── migrating-to-combine.xcodeproj │ │ │ └── project.pbxproj │ │ └── migrating-to-combine │ │ │ ├── AlertService.swift │ │ │ ├── Animal.swift │ │ │ ├── AnimalCell.swift │ │ │ ├── AnimalsViewController.swift │ │ │ ├── AppDelegate.swift │ │ │ ├── Assets.xcassets │ │ │ ├── AccentColor.colorset │ │ │ │ └── Contents.json │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ │ ├── Info.plist │ │ │ ├── NetworkingService.swift │ │ │ └── SceneDelegate.swift │ └── video │ │ └── migrating-to-combine │ │ ├── README.md │ │ ├── migrating-to-combine.xcodeproj │ │ └── project.pbxproj │ │ └── migrating-to-combine │ │ ├── AlertService.swift │ │ ├── Animal.swift │ │ ├── AnimalCell.swift │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── NetworkingService.swift │ │ ├── SceneDelegate.swift │ │ └── ViewController.swift ├── navigationstack-with-associated-values-blog │ ├── navigationstack-with-associated-values-blog.xcodeproj │ │ └── project.pbxproj │ └── navigationstack-with-associated-values-blog │ │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── Preview Content │ │ └── Preview Assets.xcassets │ │ │ └── Contents.json │ │ ├── User.swift │ │ ├── Views.swift │ │ └── navigationstack_with_associated_values_blogApp.swift ├── not-github │ ├── Not GitHub Widget │ │ ├── Assets.xcassets │ │ │ ├── AccentColor.colorset │ │ │ │ └── Contents.json │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ └── WidgetBackground.colorset │ │ │ │ └── Contents.json │ │ ├── Info.plist │ │ ├── Not_GitHub_Widget.intentdefinition │ │ └── Not_GitHub_Widget.swift │ ├── not-github.xcodeproj │ │ └── project.pbxproj │ └── not-github │ │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── ContentView.swift │ │ ├── ContributionsGraphView.swift │ │ ├── DateService.swift │ │ ├── DevelopmentDay.swift │ │ ├── GitHubParser.swift │ │ ├── Info.plist │ │ ├── Preview Content │ │ └── Preview Assets.xcassets │ │ │ └── Contents.json │ │ └── not_githubApp.swift ├── one-time-password-sign-in-amplify │ ├── one-time-password-sign-in-amplify.xcodeproj │ │ └── project.pbxproj │ └── one-time-password-sign-in-amplify │ │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ └── amplify-logo-large.imageset │ │ │ ├── Contents.json │ │ │ └── amplify-logo-large.png │ │ ├── AuthView.swift │ │ ├── ConfirmSignUpView.swift │ │ ├── EmailCodeView.swift │ │ ├── LoginView.swift │ │ ├── Preview Content │ │ └── Preview Assets.xcassets │ │ │ └── Contents.json │ │ ├── SignUpView.swift │ │ └── one_time_password_sign_in_amplifyApp.swift ├── push-notifications │ ├── push-notifications-ios │ │ ├── .gitignore │ │ ├── .vscode │ │ │ └── settings.json │ │ ├── Podfile │ │ ├── Podfile.lock │ │ ├── amplify │ │ │ ├── .config │ │ │ │ └── project-config.json │ │ │ ├── backend │ │ │ │ ├── api │ │ │ │ │ └── PushNotificationsTutorial │ │ │ │ │ │ ├── parameters.json │ │ │ │ │ │ ├── schema.graphql │ │ │ │ │ │ ├── stacks │ │ │ │ │ │ └── CustomResources.json │ │ │ │ │ │ └── transform.conf.json │ │ │ │ ├── auth │ │ │ │ │ └── cognito102d7417 │ │ │ │ │ │ ├── cognito102d7417-cloudformation-template.yml │ │ │ │ │ │ └── parameters.json │ │ │ │ ├── backend-config.json │ │ │ │ └── tags.json │ │ │ ├── cli.json │ │ │ ├── generated │ │ │ │ └── models │ │ │ │ │ ├── AmplifyModels.swift │ │ │ │ │ ├── Message+Schema.swift │ │ │ │ │ └── Message.swift │ │ │ └── team-provider-info.json │ │ ├── push-notifications-ios.xcodeproj │ │ │ └── project.pbxproj │ │ └── push-notifications-ios │ │ │ ├── Assets.xcassets │ │ │ ├── AccentColor.colorset │ │ │ │ └── Contents.json │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ │ ├── ContentView.swift │ │ │ ├── Info.plist │ │ │ ├── NotificationService.swift │ │ │ ├── Preview Content │ │ │ └── Preview Assets.xcassets │ │ │ │ └── Contents.json │ │ │ ├── push-notifications-ios.entitlements │ │ │ └── push_notifications_iosApp.swift │ └── push-notifications-lambda │ │ ├── .gitignore │ │ ├── Dockerfile │ │ ├── Package.swift │ │ ├── README.md │ │ ├── Sources │ │ └── push-notifications-lambda │ │ │ └── main.swift │ │ ├── Tests │ │ ├── LinuxMain.swift │ │ └── push-notifications-lambdaTests │ │ │ └── XCTestManifests.swift │ │ └── scripts │ │ └── package.sh ├── remote-image-swiftui │ ├── .gitignore │ ├── .vscode │ │ └── settings.json │ ├── Podfile │ ├── Podfile.lock │ ├── amplify │ │ ├── .config │ │ │ └── project-config.json │ │ ├── README.md │ │ ├── backend │ │ │ ├── auth │ │ │ │ └── remoteimageswiftui087b71d0 │ │ │ │ │ ├── parameters.json │ │ │ │ │ └── remoteimageswiftui087b71d0-cloudformation-template.yml │ │ │ ├── backend-config.json │ │ │ ├── storage │ │ │ │ └── remoteimageswiftuif93221e2 │ │ │ │ │ └── parameters.json │ │ │ └── tags.json │ │ ├── cli.json │ │ └── team-provider-info.json │ ├── remote-image-swiftui.xcodeproj │ │ └── project.pbxproj │ └── remote-image-swiftui │ │ ├── AmplifyImageDownloader.swift │ │ ├── AmplifyService.swift │ │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── ContentView.swift │ │ ├── Info.plist │ │ ├── Post.swift │ │ ├── Preview Content │ │ └── Preview Assets.xcassets │ │ │ └── Contents.json │ │ ├── RemoteImage.swift │ │ └── remote_image_swiftuiApp.swift ├── shopping-cart │ ├── .gitignore │ ├── Podfile │ ├── Podfile.lock │ ├── amplify │ │ ├── .config │ │ │ └── project-config.json │ │ ├── backend │ │ │ ├── api │ │ │ │ └── amplifyDatasource │ │ │ │ │ ├── parameters.json │ │ │ │ │ ├── schema.graphql │ │ │ │ │ ├── stacks │ │ │ │ │ └── CustomResources.json │ │ │ │ │ └── transform.conf.json │ │ │ └── backend-config.json │ │ ├── cli.json │ │ └── generated │ │ │ └── models │ │ │ ├── AmplifyModels.swift │ │ │ ├── Cart+Schema.swift │ │ │ ├── Cart.swift │ │ │ ├── CartProduct+Schema.swift │ │ │ ├── CartProduct.swift │ │ │ ├── Product+Schema.swift │ │ │ └── Product.swift │ ├── shopping-cart.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── shopping-cart.xcscheme │ └── shopping-cart │ │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── CartView.swift │ │ ├── Info.plist │ │ ├── NewProductView.swift │ │ ├── Preview Content │ │ └── Preview Assets.xcassets │ │ │ └── Contents.json │ │ ├── ProductsView.swift │ │ └── shopping_cartApp.swift ├── siwa-swiftui │ ├── .gitignore │ ├── .vscode │ │ └── settings.json │ ├── Podfile │ ├── Podfile.lock │ ├── amplify │ │ ├── .config │ │ │ └── project-config.json │ │ ├── README.md │ │ ├── backend │ │ │ ├── auth │ │ │ │ └── siwaswiftuid8ce7175d8ce7175 │ │ │ │ │ ├── parameters.json │ │ │ │ │ └── siwaswiftuid8ce7175d8ce7175-cloudformation-template.yml │ │ │ ├── backend-config.json │ │ │ └── tags.json │ │ ├── cli.json │ │ └── team-provider-info.json │ ├── siwa-swiftui.xcodeproj │ │ └── project.pbxproj │ └── siwa-swiftui │ │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── ContentView.swift │ │ ├── Info.plist │ │ ├── Preview Content │ │ └── Preview Assets.xcassets │ │ │ └── Contents.json │ │ ├── siwa-swiftui.entitlements │ │ └── siwa_swiftuiApp.swift ├── speedrun-three-apps │ ├── chatty │ │ ├── .gitignore │ │ ├── Podfile │ │ ├── Podfile.lock │ │ ├── amplify │ │ │ ├── .config │ │ │ │ └── project-config.json │ │ │ ├── backend │ │ │ │ ├── api │ │ │ │ │ └── amplifyDatasource │ │ │ │ │ │ ├── parameters.json │ │ │ │ │ │ ├── schema.graphql │ │ │ │ │ │ ├── stacks │ │ │ │ │ │ └── CustomResources.json │ │ │ │ │ │ └── transform.conf.json │ │ │ │ └── backend-config.json │ │ │ ├── cli.json │ │ │ └── generated │ │ │ │ └── models │ │ │ │ ├── AmplifyModels.swift │ │ │ │ ├── Message+Schema.swift │ │ │ │ ├── Message.swift │ │ │ │ ├── User+Schema.swift │ │ │ │ └── User.swift │ │ ├── chatty.xcodeproj │ │ │ └── project.pbxproj │ │ └── chatty │ │ │ ├── Assets.xcassets │ │ │ ├── AccentColor.colorset │ │ │ │ └── Contents.json │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ │ ├── ContentView.swift │ │ │ ├── Info.plist │ │ │ ├── Message+Extensions.swift │ │ │ ├── MessagesView.swift │ │ │ ├── Preview Content │ │ │ └── Preview Assets.xcassets │ │ │ │ └── Contents.json │ │ │ └── chattyApp.swift │ ├── global-chat │ │ ├── .Podfile.swp │ │ ├── .gitignore │ │ ├── Podfile │ │ ├── amplify │ │ │ ├── .config │ │ │ │ └── project-config.json │ │ │ ├── backend │ │ │ │ ├── api │ │ │ │ │ └── amplifyDatasource │ │ │ │ │ │ ├── parameters.json │ │ │ │ │ │ ├── schema.graphql │ │ │ │ │ │ ├── stacks │ │ │ │ │ │ └── CustomResources.json │ │ │ │ │ │ └── transform.conf.json │ │ │ │ └── backend-config.json │ │ │ ├── cli.json │ │ │ └── generated │ │ │ │ └── models │ │ │ │ ├── AmplifyModels.swift │ │ │ │ ├── Message+Schema.swift │ │ │ │ ├── Message.swift │ │ │ │ ├── User+Schema.swift │ │ │ │ └── User.swift │ │ ├── global-chat.xcodeproj │ │ │ └── project.pbxproj │ │ └── global-chat │ │ │ ├── Assets.xcassets │ │ │ ├── AccentColor.colorset │ │ │ │ └── Contents.json │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ │ ├── ContentView.swift │ │ │ ├── Info.plist │ │ │ ├── Preview Content │ │ │ └── Preview Assets.xcassets │ │ │ │ └── Contents.json │ │ │ └── global_chatApp.swift │ ├── hi-resolution │ │ ├── Podfile │ │ ├── hi-resolution.xcodeproj │ │ │ └── project.pbxproj │ │ └── hi-resolution │ │ │ ├── Assets.xcassets │ │ │ ├── AccentColor.colorset │ │ │ │ └── Contents.json │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ │ ├── ContentView.swift │ │ │ ├── Info.plist │ │ │ ├── Preview Content │ │ │ └── Preview Assets.xcassets │ │ │ │ └── Contents.json │ │ │ └── hi_resolutionApp.swift │ └── quick-note │ │ ├── .gitignore │ │ ├── Podfile │ │ ├── Podfile.lock │ │ ├── amplify │ │ ├── .config │ │ │ └── project-config.json │ │ ├── backend │ │ │ ├── api │ │ │ │ └── amplifyDatasource │ │ │ │ │ ├── parameters.json │ │ │ │ │ ├── schema.graphql │ │ │ │ │ ├── stacks │ │ │ │ │ └── CustomResources.json │ │ │ │ │ └── transform.conf.json │ │ │ └── backend-config.json │ │ └── cli.json │ │ ├── quick-note.xcodeproj │ │ └── project.pbxproj │ │ └── quick-note │ │ ├── AmplifyModels.swift │ │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── ContentView.swift │ │ ├── Info.plist │ │ ├── Note+Extensions.swift │ │ ├── Note+Schema.swift │ │ ├── Note.swift │ │ ├── Preview Content │ │ └── Preview Assets.xcassets │ │ │ └── Contents.json │ │ └── quick_noteApp.swift ├── swiftui-infinite-scrolling │ ├── README.md │ ├── swiftui-infinite-scrolling.xcodeproj │ │ └── project.pbxproj │ └── swiftui-infinite-scrolling │ │ ├── Animal.swift │ │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── ContentView.swift │ │ ├── Info.plist │ │ ├── Preview Content │ │ └── Preview Assets.xcassets │ │ │ └── Contents.json │ │ ├── SourceOfTruth.swift │ │ └── swiftui_infinite_scrollingApp.swift ├── swiftui-life-cycle │ ├── README.md │ ├── swiftui-life-cycle.xcodeproj │ │ └── project.pbxproj │ └── swiftui-life-cycle │ │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── ContentView.swift │ │ ├── Info.plist │ │ ├── MyAppDelegate.swift │ │ ├── MySceneDelegate.swift │ │ ├── Preview Content │ │ └── Preview Assets.xcassets │ │ │ └── Contents.json │ │ └── swiftui_life_cycleApp.swift ├── swiftui-mvvm │ ├── swiftui-mvvm.xcodeproj │ │ └── project.pbxproj │ ├── swiftui-mvvm │ │ ├── AppDataService.swift │ │ ├── Assets.xcassets │ │ │ ├── AccentColor.colorset │ │ │ │ └── Contents.json │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Info.plist │ │ ├── Preview Content │ │ │ └── Preview Assets.xcassets │ │ │ │ └── Contents.json │ │ ├── User.swift │ │ ├── UsersView.swift │ │ └── swiftui_mvvmApp.swift │ └── swiftui-mvvmTests │ │ ├── Info.plist │ │ └── swiftui_mvvmTests.swift ├── up-and-running-amplify-swift │ ├── .gitignore │ ├── amplify │ │ ├── .config │ │ │ └── project-config.json │ │ ├── README.md │ │ ├── backend │ │ │ ├── backend-config.json │ │ │ ├── tags.json │ │ │ └── types │ │ │ │ └── amplify-dependent-resources-ref.d.ts │ │ ├── cli.json │ │ ├── hooks │ │ │ └── README.md │ │ └── team-provider-info.json │ ├── up-and-running-amplify-swift.xcodeproj │ │ └── project.pbxproj │ └── up-and-running-amplify-swift │ │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── ContentView.swift │ │ ├── Preview Content │ │ └── Preview Assets.xcassets │ │ │ └── Contents.json │ │ └── up_and_running_amplify_swiftApp.swift └── upload-to-s3-ios │ ├── .gitignore │ ├── amplify │ ├── .config │ │ └── project-config.json │ ├── README.md │ ├── backend │ │ ├── auth │ │ │ └── uploadtos3ios19ec700d │ │ │ │ └── cli-inputs.json │ │ ├── backend-config.json │ │ ├── storage │ │ │ └── s36a4e3dfe │ │ │ │ └── cli-inputs.json │ │ ├── tags.json │ │ └── types │ │ │ └── amplify-dependent-resources-ref.d.ts │ ├── cli.json │ ├── hooks │ │ └── README.md │ └── team-provider-info.json │ ├── upload-to-s3-ios.xcodeproj │ └── project.pbxproj │ └── upload-to-s3-ios │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── ContentView.swift │ ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json │ └── upload_to_s3_iosApp.swift ├── flutter ├── README.md ├── flutter_datastore_crud │ ├── .gitignore │ ├── .metadata │ ├── .vscode │ │ └── settings.json │ ├── README.md │ ├── amplify │ │ ├── .config │ │ │ └── project-config.json │ │ ├── backend │ │ │ ├── api │ │ │ │ └── flutterdatastorecrudops │ │ │ │ │ ├── parameters.json │ │ │ │ │ ├── schema.graphql │ │ │ │ │ ├── stacks │ │ │ │ │ └── CustomResources.json │ │ │ │ │ └── transform.conf.json │ │ │ └── backend-config.json │ │ ├── cli.json │ │ └── team-provider-info.json │ ├── android │ │ ├── .gitignore │ │ ├── app │ │ │ ├── build.gradle │ │ │ └── src │ │ │ │ ├── debug │ │ │ │ └── AndroidManifest.xml │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── kotlin │ │ │ │ │ └── com │ │ │ │ │ │ └── example │ │ │ │ │ │ └── flutter_datastore_crud │ │ │ │ │ │ └── MainActivity.kt │ │ │ │ └── res │ │ │ │ │ ├── drawable │ │ │ │ │ └── launch_background.xml │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ └── values │ │ │ │ │ └── styles.xml │ │ │ │ └── profile │ │ │ │ └── AndroidManifest.xml │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ └── gradle-wrapper.properties │ │ └── settings.gradle │ ├── ios │ │ ├── .gitignore │ │ ├── Flutter │ │ │ ├── AppFrameworkInfo.plist │ │ │ ├── Debug.xcconfig │ │ │ └── Release.xcconfig │ │ ├── Podfile │ │ ├── Podfile.lock │ │ ├── Runner.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── Runner.xcscheme │ │ └── Runner │ │ │ ├── AppDelegate.swift │ │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ │ └── LaunchImage.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── LaunchImage.png │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ ├── LaunchImage@3x.png │ │ │ │ └── README.md │ │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ │ ├── Info.plist │ │ │ └── Runner-Bridging-Header.h │ ├── lib │ │ ├── amplifyconfiguration.dart │ │ ├── main.dart │ │ └── models │ │ │ ├── ModelProvider.dart │ │ │ └── SexyObject.dart │ ├── pubspec.yaml │ └── test │ │ └── widget_test.dart ├── flutter_navigation │ ├── .gitignore │ ├── .metadata │ ├── README.md │ ├── android │ │ ├── .gitignore │ │ ├── app │ │ │ ├── build.gradle │ │ │ └── src │ │ │ │ ├── debug │ │ │ │ └── AndroidManifest.xml │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── kotlin │ │ │ │ │ └── com │ │ │ │ │ │ └── example │ │ │ │ │ │ └── flutter_navigation │ │ │ │ │ │ └── MainActivity.kt │ │ │ │ └── res │ │ │ │ │ ├── drawable-v21 │ │ │ │ │ └── launch_background.xml │ │ │ │ │ ├── drawable │ │ │ │ │ └── launch_background.xml │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── values-night │ │ │ │ │ └── styles.xml │ │ │ │ │ └── values │ │ │ │ │ └── styles.xml │ │ │ │ └── profile │ │ │ │ └── AndroidManifest.xml │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ └── gradle-wrapper.properties │ │ └── settings.gradle │ ├── integration_test │ │ ├── app_test.dart │ │ └── driver.dart │ ├── ios │ │ ├── .gitignore │ │ ├── Flutter │ │ │ ├── AppFrameworkInfo.plist │ │ │ ├── Debug.xcconfig │ │ │ └── Release.xcconfig │ │ ├── Podfile │ │ ├── Podfile.lock │ │ ├── Runner.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── Runner.xcscheme │ │ └── Runner │ │ │ ├── AppDelegate.swift │ │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ │ └── LaunchImage.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── LaunchImage.png │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ ├── LaunchImage@3x.png │ │ │ │ └── README.md │ │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ │ ├── Info.plist │ │ │ └── Runner-Bridging-Header.h │ ├── lib │ │ └── main.dart │ ├── pubspec.yaml │ └── test │ │ └── widget_test.dart └── urban_dictionary │ ├── .gitignore │ ├── .metadata │ ├── README.md │ ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── urban_dictionary │ │ │ │ │ └── MainActivity.kt │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ └── launch_background.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ └── values │ │ │ │ └── styles.xml │ │ │ └── profile │ │ │ └── AndroidManifest.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ └── settings.gradle │ ├── ios │ ├── .gitignore │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── Podfile │ ├── Podfile.lock │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ └── Runner │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ └── LaunchImage.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ └── README.md │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── Runner-Bridging-Header.h │ ├── lib │ ├── define_term_response.dart │ ├── enter_term_page.dart │ ├── main.dart │ ├── networking_service.dart │ ├── term.dart │ ├── term_details_page.dart │ └── terms_page.dart │ ├── pubspec.yaml │ └── test │ └── widget_test.dart ├── templates └── checklist.md └── web ├── code-passionately-website ├── .gitignore ├── Content │ ├── index.md │ └── posts │ │ ├── first-post.md │ │ └── index.md ├── Output │ ├── feed.rss │ ├── index.html │ ├── posts │ │ ├── first-post │ │ │ └── index.html │ │ └── index.html │ ├── sitemap.xml │ ├── styles.css │ └── tags │ │ ├── article │ │ └── index.html │ │ ├── first │ │ └── index.html │ │ └── index.html ├── Package.swift └── Sources │ └── CodePassionatelyWebsite │ └── main.swift └── getting-started-swift-lambda ├── MyFirstLambda ├── .gitignore ├── Dockerfile ├── Package.swift ├── README.md ├── Sources │ └── MyFirstLambda │ │ └── main.swift ├── Tests │ ├── LinuxMain.swift │ └── MyFirstLambdaTests │ │ └── XCTestManifests.swift └── scripts │ └── package.sh └── ios-interact-with-lambda ├── ios-interact-with-lambda.xcodeproj └── project.pbxproj └── ios-interact-with-lambda ├── Assets.xcassets ├── AccentColor.colorset │ └── Contents.json ├── AppIcon.appiconset │ └── Contents.json └── Contents.json ├── ContentView.swift ├── Info.plist ├── Preview Content └── Preview Assets.xcassets │ └── Contents.json └── ios_interact_with_lambdaApp.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/README.md -------------------------------------------------------------------------------- /android/MyApplication/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/MyApplication/.gitignore -------------------------------------------------------------------------------- /android/MyApplication/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /android/MyApplication/.idea/.name: -------------------------------------------------------------------------------- 1 | My Application -------------------------------------------------------------------------------- /android/MyApplication/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/MyApplication/.idea/compiler.xml -------------------------------------------------------------------------------- /android/MyApplication/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/MyApplication/.idea/gradle.xml -------------------------------------------------------------------------------- /android/MyApplication/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/MyApplication/.idea/misc.xml -------------------------------------------------------------------------------- /android/MyApplication/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/MyApplication/.idea/vcs.xml -------------------------------------------------------------------------------- /android/MyApplication/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /android/MyApplication/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/MyApplication/app/build.gradle -------------------------------------------------------------------------------- /android/MyApplication/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/MyApplication/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/MyApplication/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/MyApplication/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/MyApplication/app/src/main/java/com/example/myapplication/auth/ui/ConfirmSignUpScreen.kt: -------------------------------------------------------------------------------- 1 | package com.example.myapplication.auth.ui 2 | 3 | -------------------------------------------------------------------------------- /android/MyApplication/app/src/main/java/com/example/myapplication/auth/ui/ForgotPasswordScreen.kt: -------------------------------------------------------------------------------- 1 | package com.example.myapplication.auth.ui 2 | 3 | -------------------------------------------------------------------------------- /android/MyApplication/app/src/main/java/com/example/myapplication/auth/ui/LoginScreen.kt: -------------------------------------------------------------------------------- 1 | package com.example.myapplication.auth.ui 2 | 3 | -------------------------------------------------------------------------------- /android/MyApplication/app/src/main/java/com/example/myapplication/auth/ui/SignUpScreen.kt: -------------------------------------------------------------------------------- 1 | package com.example.myapplication.auth.ui 2 | 3 | -------------------------------------------------------------------------------- /android/MyApplication/app/src/main/java/com/example/myapplication/chat/ui/ChatRoomsScreen.kt: -------------------------------------------------------------------------------- 1 | package com.example.myapplication.chat.ui 2 | 3 | -------------------------------------------------------------------------------- /android/MyApplication/app/src/main/java/com/example/myapplication/chat/ui/MessagesScreen.kt: -------------------------------------------------------------------------------- 1 | package com.example.myapplication.chat.ui 2 | 3 | -------------------------------------------------------------------------------- /android/MyApplication/app/src/main/java/com/example/myapplication/posts/ui/NewPostScreen.kt: -------------------------------------------------------------------------------- 1 | package com.example.myapplication.posts.ui 2 | 3 | -------------------------------------------------------------------------------- /android/MyApplication/app/src/main/java/com/example/myapplication/posts/ui/PostDetailsScreen.kt: -------------------------------------------------------------------------------- 1 | package com.example.myapplication.posts.ui 2 | 3 | -------------------------------------------------------------------------------- /android/MyApplication/app/src/main/java/com/example/myapplication/posts/ui/PostsScreen.kt: -------------------------------------------------------------------------------- 1 | package com.example.myapplication.posts.ui 2 | 3 | -------------------------------------------------------------------------------- /android/MyApplication/app/src/main/java/com/example/myapplication/util/Color.kt: -------------------------------------------------------------------------------- 1 | package com.example.myapplication.util 2 | 3 | -------------------------------------------------------------------------------- /android/MyApplication/app/src/main/java/com/example/myapplication/util/CustomButton.kt: -------------------------------------------------------------------------------- 1 | package com.example.myapplication.util 2 | 3 | -------------------------------------------------------------------------------- /android/MyApplication/app/src/main/java/com/example/myapplication/util/CustomField.kt: -------------------------------------------------------------------------------- 1 | package com.example.myapplication.util 2 | 3 | -------------------------------------------------------------------------------- /android/MyApplication/app/src/main/java/com/example/myapplication/util/StringExtensions.kt: -------------------------------------------------------------------------------- 1 | package com.example.myapplication.util 2 | 3 | -------------------------------------------------------------------------------- /android/MyApplication/app/src/main/java/com/example/myapplication/util/Theme.kt: -------------------------------------------------------------------------------- 1 | package com.example.myapplication.util 2 | 3 | -------------------------------------------------------------------------------- /android/MyApplication/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/MyApplication/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /android/MyApplication/app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/MyApplication/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /android/MyApplication/app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/MyApplication/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /android/MyApplication/app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/MyApplication/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /android/MyApplication/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/MyApplication/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /android/MyApplication/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/MyApplication/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /android/MyApplication/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/MyApplication/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /android/MyApplication/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/MyApplication/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/MyApplication/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/MyApplication/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /android/MyApplication/app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/MyApplication/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /android/MyApplication/app/src/main/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/MyApplication/app/src/main/res/xml/data_extraction_rules.xml -------------------------------------------------------------------------------- /android/MyApplication/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/MyApplication/build.gradle -------------------------------------------------------------------------------- /android/MyApplication/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/MyApplication/gradle.properties -------------------------------------------------------------------------------- /android/MyApplication/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/MyApplication/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/MyApplication/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/MyApplication/gradlew -------------------------------------------------------------------------------- /android/MyApplication/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/MyApplication/gradlew.bat -------------------------------------------------------------------------------- /android/MyApplication/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/MyApplication/settings.gradle -------------------------------------------------------------------------------- /android/access-photo-gallery/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/access-photo-gallery/.gitignore -------------------------------------------------------------------------------- /android/access-photo-gallery/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /android/access-photo-gallery/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/access-photo-gallery/.idea/compiler.xml -------------------------------------------------------------------------------- /android/access-photo-gallery/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/access-photo-gallery/.idea/gradle.xml -------------------------------------------------------------------------------- /android/access-photo-gallery/.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/access-photo-gallery/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /android/access-photo-gallery/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/access-photo-gallery/.idea/misc.xml -------------------------------------------------------------------------------- /android/access-photo-gallery/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/access-photo-gallery/.idea/vcs.xml -------------------------------------------------------------------------------- /android/access-photo-gallery/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /android/access-photo-gallery/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/access-photo-gallery/app/build.gradle -------------------------------------------------------------------------------- /android/access-photo-gallery/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/access-photo-gallery/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/access-photo-gallery/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/access-photo-gallery/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/access-photo-gallery/app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/access-photo-gallery/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /android/access-photo-gallery/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/access-photo-gallery/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /android/access-photo-gallery/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/access-photo-gallery/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/access-photo-gallery/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/access-photo-gallery/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /android/access-photo-gallery/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/access-photo-gallery/build.gradle -------------------------------------------------------------------------------- /android/access-photo-gallery/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/access-photo-gallery/gradle.properties -------------------------------------------------------------------------------- /android/access-photo-gallery/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/access-photo-gallery/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/access-photo-gallery/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/access-photo-gallery/gradlew -------------------------------------------------------------------------------- /android/access-photo-gallery/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/access-photo-gallery/gradlew.bat -------------------------------------------------------------------------------- /android/access-photo-gallery/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = "access-photo-gallery" 2 | include ':app' 3 | -------------------------------------------------------------------------------- /android/amplify-auth-web-ui-android/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/amplify-auth-web-ui-android/README.md -------------------------------------------------------------------------------- /android/amplify-auth-web-ui-android/proto/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/amplify-auth-web-ui-android/proto/.gitignore -------------------------------------------------------------------------------- /android/amplify-auth-web-ui-android/proto/.idea/.name: -------------------------------------------------------------------------------- 1 | Auth-Web-UI-Proto -------------------------------------------------------------------------------- /android/amplify-auth-web-ui-android/proto/.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/amplify-auth-web-ui-android/proto/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /android/amplify-auth-web-ui-android/proto/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/amplify-auth-web-ui-android/proto/.idea/gradle.xml -------------------------------------------------------------------------------- /android/amplify-auth-web-ui-android/proto/.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/amplify-auth-web-ui-android/proto/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /android/amplify-auth-web-ui-android/proto/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/amplify-auth-web-ui-android/proto/.idea/misc.xml -------------------------------------------------------------------------------- /android/amplify-auth-web-ui-android/proto/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/amplify-auth-web-ui-android/proto/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /android/amplify-auth-web-ui-android/proto/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/amplify-auth-web-ui-android/proto/.idea/vcs.xml -------------------------------------------------------------------------------- /android/amplify-auth-web-ui-android/proto/amplify.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/amplify-auth-web-ui-android/proto/amplify.json -------------------------------------------------------------------------------- /android/amplify-auth-web-ui-android/proto/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /android/amplify-auth-web-ui-android/proto/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/amplify-auth-web-ui-android/proto/app/build.gradle -------------------------------------------------------------------------------- /android/amplify-auth-web-ui-android/proto/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/amplify-auth-web-ui-android/proto/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/amplify-auth-web-ui-android/proto/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/amplify-auth-web-ui-android/proto/build.gradle -------------------------------------------------------------------------------- /android/amplify-auth-web-ui-android/proto/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/amplify-auth-web-ui-android/proto/gradle.properties -------------------------------------------------------------------------------- /android/amplify-auth-web-ui-android/proto/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/amplify-auth-web-ui-android/proto/gradlew -------------------------------------------------------------------------------- /android/amplify-auth-web-ui-android/proto/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/amplify-auth-web-ui-android/proto/gradlew.bat -------------------------------------------------------------------------------- /android/amplify-auth-web-ui-android/proto/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name = "Auth-Web-UI-Proto" -------------------------------------------------------------------------------- /android/amplify-datastore-crud/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/amplify-datastore-crud/.gitignore -------------------------------------------------------------------------------- /android/amplify-datastore-crud/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /android/amplify-datastore-crud/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/amplify-datastore-crud/.idea/compiler.xml -------------------------------------------------------------------------------- /android/amplify-datastore-crud/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/amplify-datastore-crud/.idea/gradle.xml -------------------------------------------------------------------------------- /android/amplify-datastore-crud/.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/amplify-datastore-crud/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /android/amplify-datastore-crud/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/amplify-datastore-crud/.idea/misc.xml -------------------------------------------------------------------------------- /android/amplify-datastore-crud/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/amplify-datastore-crud/.idea/vcs.xml -------------------------------------------------------------------------------- /android/amplify-datastore-crud/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/amplify-datastore-crud/.vscode/settings.json -------------------------------------------------------------------------------- /android/amplify-datastore-crud/amplify/.config/project-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/amplify-datastore-crud/amplify/.config/project-config.json -------------------------------------------------------------------------------- /android/amplify-datastore-crud/amplify/backend/backend-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/amplify-datastore-crud/amplify/backend/backend-config.json -------------------------------------------------------------------------------- /android/amplify-datastore-crud/amplify/backend/tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/amplify-datastore-crud/amplify/backend/tags.json -------------------------------------------------------------------------------- /android/amplify-datastore-crud/amplify/cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/amplify-datastore-crud/amplify/cli.json -------------------------------------------------------------------------------- /android/amplify-datastore-crud/amplify/team-provider-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/amplify-datastore-crud/amplify/team-provider-info.json -------------------------------------------------------------------------------- /android/amplify-datastore-crud/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /android/amplify-datastore-crud/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/amplify-datastore-crud/app/build.gradle -------------------------------------------------------------------------------- /android/amplify-datastore-crud/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/amplify-datastore-crud/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/amplify-datastore-crud/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/amplify-datastore-crud/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/amplify-datastore-crud/app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/amplify-datastore-crud/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /android/amplify-datastore-crud/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/amplify-datastore-crud/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /android/amplify-datastore-crud/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/amplify-datastore-crud/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/amplify-datastore-crud/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/amplify-datastore-crud/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /android/amplify-datastore-crud/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/amplify-datastore-crud/build.gradle -------------------------------------------------------------------------------- /android/amplify-datastore-crud/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/amplify-datastore-crud/gradle.properties -------------------------------------------------------------------------------- /android/amplify-datastore-crud/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/amplify-datastore-crud/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/amplify-datastore-crud/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/amplify-datastore-crud/gradlew -------------------------------------------------------------------------------- /android/amplify-datastore-crud/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/amplify-datastore-crud/gradlew.bat -------------------------------------------------------------------------------- /android/amplify-datastore-crud/local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/amplify-datastore-crud/local.properties -------------------------------------------------------------------------------- /android/amplify-datastore-crud/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = "amplify-datastore-crud" 2 | include ':app' 3 | -------------------------------------------------------------------------------- /android/camera-jetpack-compose/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/camera-jetpack-compose/.gitignore -------------------------------------------------------------------------------- /android/camera-jetpack-compose/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /android/camera-jetpack-compose/.idea/.name: -------------------------------------------------------------------------------- 1 | Camera Jetpack Compose Video -------------------------------------------------------------------------------- /android/camera-jetpack-compose/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/camera-jetpack-compose/.idea/compiler.xml -------------------------------------------------------------------------------- /android/camera-jetpack-compose/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/camera-jetpack-compose/.idea/gradle.xml -------------------------------------------------------------------------------- /android/camera-jetpack-compose/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/camera-jetpack-compose/.idea/misc.xml -------------------------------------------------------------------------------- /android/camera-jetpack-compose/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/camera-jetpack-compose/.idea/vcs.xml -------------------------------------------------------------------------------- /android/camera-jetpack-compose/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /android/camera-jetpack-compose/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/camera-jetpack-compose/app/build.gradle -------------------------------------------------------------------------------- /android/camera-jetpack-compose/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/camera-jetpack-compose/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/camera-jetpack-compose/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/camera-jetpack-compose/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/camera-jetpack-compose/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/camera-jetpack-compose/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /android/camera-jetpack-compose/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/camera-jetpack-compose/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/camera-jetpack-compose/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/camera-jetpack-compose/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /android/camera-jetpack-compose/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/camera-jetpack-compose/build.gradle -------------------------------------------------------------------------------- /android/camera-jetpack-compose/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/camera-jetpack-compose/gradle.properties -------------------------------------------------------------------------------- /android/camera-jetpack-compose/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/camera-jetpack-compose/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/camera-jetpack-compose/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/camera-jetpack-compose/gradlew -------------------------------------------------------------------------------- /android/camera-jetpack-compose/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/camera-jetpack-compose/gradlew.bat -------------------------------------------------------------------------------- /android/camera-jetpack-compose/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/camera-jetpack-compose/settings.gradle -------------------------------------------------------------------------------- /android/compose-for-beginners/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/compose-for-beginners/.gitignore -------------------------------------------------------------------------------- /android/compose-for-beginners/.idea/$CACHE_FILE$: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/compose-for-beginners/.idea/$CACHE_FILE$ -------------------------------------------------------------------------------- /android/compose-for-beginners/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /android/compose-for-beginners/.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/compose-for-beginners/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /android/compose-for-beginners/.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/compose-for-beginners/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /android/compose-for-beginners/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/compose-for-beginners/.idea/compiler.xml -------------------------------------------------------------------------------- /android/compose-for-beginners/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/compose-for-beginners/.idea/gradle.xml -------------------------------------------------------------------------------- /android/compose-for-beginners/.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/compose-for-beginners/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /android/compose-for-beginners/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/compose-for-beginners/.idea/misc.xml -------------------------------------------------------------------------------- /android/compose-for-beginners/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/compose-for-beginners/.idea/vcs.xml -------------------------------------------------------------------------------- /android/compose-for-beginners/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/compose-for-beginners/README.md -------------------------------------------------------------------------------- /android/compose-for-beginners/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /android/compose-for-beginners/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/compose-for-beginners/app/build.gradle -------------------------------------------------------------------------------- /android/compose-for-beginners/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/compose-for-beginners/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/compose-for-beginners/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/compose-for-beginners/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/compose-for-beginners/app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/compose-for-beginners/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /android/compose-for-beginners/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/compose-for-beginners/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /android/compose-for-beginners/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/compose-for-beginners/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/compose-for-beginners/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/compose-for-beginners/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /android/compose-for-beginners/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/compose-for-beginners/build.gradle -------------------------------------------------------------------------------- /android/compose-for-beginners/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/compose-for-beginners/gradle.properties -------------------------------------------------------------------------------- /android/compose-for-beginners/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/compose-for-beginners/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/compose-for-beginners/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/compose-for-beginners/gradlew -------------------------------------------------------------------------------- /android/compose-for-beginners/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/compose-for-beginners/gradlew.bat -------------------------------------------------------------------------------- /android/compose-for-beginners/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = "compose-for-beginners" 2 | include ':app' 3 | -------------------------------------------------------------------------------- /android/jetpack-compose-amplify-auth-flow/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/jetpack-compose-amplify-auth-flow/.gitignore -------------------------------------------------------------------------------- /android/jetpack-compose-amplify-auth-flow/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /android/jetpack-compose-amplify-auth-flow/.idea/.name: -------------------------------------------------------------------------------- 1 | Auth Flow -------------------------------------------------------------------------------- /android/jetpack-compose-amplify-auth-flow/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/jetpack-compose-amplify-auth-flow/.idea/compiler.xml -------------------------------------------------------------------------------- /android/jetpack-compose-amplify-auth-flow/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/jetpack-compose-amplify-auth-flow/.idea/gradle.xml -------------------------------------------------------------------------------- /android/jetpack-compose-amplify-auth-flow/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/jetpack-compose-amplify-auth-flow/.idea/misc.xml -------------------------------------------------------------------------------- /android/jetpack-compose-amplify-auth-flow/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/jetpack-compose-amplify-auth-flow/.idea/vcs.xml -------------------------------------------------------------------------------- /android/jetpack-compose-amplify-auth-flow/amplify/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/jetpack-compose-amplify-auth-flow/amplify/README.md -------------------------------------------------------------------------------- /android/jetpack-compose-amplify-auth-flow/amplify/backend/tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/jetpack-compose-amplify-auth-flow/amplify/backend/tags.json -------------------------------------------------------------------------------- /android/jetpack-compose-amplify-auth-flow/amplify/cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/jetpack-compose-amplify-auth-flow/amplify/cli.json -------------------------------------------------------------------------------- /android/jetpack-compose-amplify-auth-flow/amplify/hooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/jetpack-compose-amplify-auth-flow/amplify/hooks/README.md -------------------------------------------------------------------------------- /android/jetpack-compose-amplify-auth-flow/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /android/jetpack-compose-amplify-auth-flow/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/jetpack-compose-amplify-auth-flow/app/build.gradle -------------------------------------------------------------------------------- /android/jetpack-compose-amplify-auth-flow/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/jetpack-compose-amplify-auth-flow/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/jetpack-compose-amplify-auth-flow/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/jetpack-compose-amplify-auth-flow/build.gradle -------------------------------------------------------------------------------- /android/jetpack-compose-amplify-auth-flow/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/jetpack-compose-amplify-auth-flow/gradle.properties -------------------------------------------------------------------------------- /android/jetpack-compose-amplify-auth-flow/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/jetpack-compose-amplify-auth-flow/gradlew -------------------------------------------------------------------------------- /android/jetpack-compose-amplify-auth-flow/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/jetpack-compose-amplify-auth-flow/gradlew.bat -------------------------------------------------------------------------------- /android/jetpack-compose-amplify-auth-flow/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/jetpack-compose-amplify-auth-flow/settings.gradle -------------------------------------------------------------------------------- /android/jetpack-compose-nav-pass-data/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/jetpack-compose-nav-pass-data/.gitignore -------------------------------------------------------------------------------- /android/jetpack-compose-nav-pass-data/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /android/jetpack-compose-nav-pass-data/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/jetpack-compose-nav-pass-data/.idea/compiler.xml -------------------------------------------------------------------------------- /android/jetpack-compose-nav-pass-data/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/jetpack-compose-nav-pass-data/.idea/gradle.xml -------------------------------------------------------------------------------- /android/jetpack-compose-nav-pass-data/.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/jetpack-compose-nav-pass-data/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /android/jetpack-compose-nav-pass-data/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/jetpack-compose-nav-pass-data/.idea/misc.xml -------------------------------------------------------------------------------- /android/jetpack-compose-nav-pass-data/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/jetpack-compose-nav-pass-data/.idea/vcs.xml -------------------------------------------------------------------------------- /android/jetpack-compose-nav-pass-data/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /android/jetpack-compose-nav-pass-data/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/jetpack-compose-nav-pass-data/app/build.gradle -------------------------------------------------------------------------------- /android/jetpack-compose-nav-pass-data/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/jetpack-compose-nav-pass-data/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/jetpack-compose-nav-pass-data/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/jetpack-compose-nav-pass-data/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/jetpack-compose-nav-pass-data/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/jetpack-compose-nav-pass-data/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /android/jetpack-compose-nav-pass-data/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/jetpack-compose-nav-pass-data/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /android/jetpack-compose-nav-pass-data/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/jetpack-compose-nav-pass-data/build.gradle -------------------------------------------------------------------------------- /android/jetpack-compose-nav-pass-data/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/jetpack-compose-nav-pass-data/gradle.properties -------------------------------------------------------------------------------- /android/jetpack-compose-nav-pass-data/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/jetpack-compose-nav-pass-data/gradlew -------------------------------------------------------------------------------- /android/jetpack-compose-nav-pass-data/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/jetpack-compose-nav-pass-data/gradlew.bat -------------------------------------------------------------------------------- /android/jetpack-compose-nav-pass-data/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = "jetpack-compose-nav-pass-data" 2 | include ':app' 3 | -------------------------------------------------------------------------------- /android/jetpack-compose-pagination/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/jetpack-compose-pagination/.gitignore -------------------------------------------------------------------------------- /android/jetpack-compose-pagination/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /android/jetpack-compose-pagination/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/jetpack-compose-pagination/.idea/compiler.xml -------------------------------------------------------------------------------- /android/jetpack-compose-pagination/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/jetpack-compose-pagination/.idea/gradle.xml -------------------------------------------------------------------------------- /android/jetpack-compose-pagination/.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/jetpack-compose-pagination/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /android/jetpack-compose-pagination/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/jetpack-compose-pagination/.idea/misc.xml -------------------------------------------------------------------------------- /android/jetpack-compose-pagination/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/jetpack-compose-pagination/.idea/vcs.xml -------------------------------------------------------------------------------- /android/jetpack-compose-pagination/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/jetpack-compose-pagination/README.md -------------------------------------------------------------------------------- /android/jetpack-compose-pagination/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /android/jetpack-compose-pagination/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/jetpack-compose-pagination/app/build.gradle -------------------------------------------------------------------------------- /android/jetpack-compose-pagination/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/jetpack-compose-pagination/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/jetpack-compose-pagination/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/jetpack-compose-pagination/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/jetpack-compose-pagination/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/jetpack-compose-pagination/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /android/jetpack-compose-pagination/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/jetpack-compose-pagination/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/jetpack-compose-pagination/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/jetpack-compose-pagination/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /android/jetpack-compose-pagination/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/jetpack-compose-pagination/build.gradle -------------------------------------------------------------------------------- /android/jetpack-compose-pagination/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/jetpack-compose-pagination/gradle.properties -------------------------------------------------------------------------------- /android/jetpack-compose-pagination/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/jetpack-compose-pagination/gradlew -------------------------------------------------------------------------------- /android/jetpack-compose-pagination/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/jetpack-compose-pagination/gradlew.bat -------------------------------------------------------------------------------- /android/jetpack-compose-pagination/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = "jetpack-compose-pagination" 2 | include ':app' 3 | -------------------------------------------------------------------------------- /android/lestry/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/lestry/.gitignore -------------------------------------------------------------------------------- /android/lestry/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /android/lestry/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/lestry/.idea/compiler.xml -------------------------------------------------------------------------------- /android/lestry/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/lestry/.idea/gradle.xml -------------------------------------------------------------------------------- /android/lestry/.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/lestry/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /android/lestry/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/lestry/.idea/misc.xml -------------------------------------------------------------------------------- /android/lestry/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/lestry/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /android/lestry/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/lestry/.idea/vcs.xml -------------------------------------------------------------------------------- /android/lestry/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /android/lestry/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/lestry/app/build.gradle -------------------------------------------------------------------------------- /android/lestry/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/lestry/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/lestry/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/lestry/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/lestry/app/src/main/java/com/kiloloco/lestry/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/lestry/app/src/main/java/com/kiloloco/lestry/MainActivity.kt -------------------------------------------------------------------------------- /android/lestry/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/lestry/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /android/lestry/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/lestry/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /android/lestry/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/lestry/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /android/lestry/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/lestry/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /android/lestry/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/lestry/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /android/lestry/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/lestry/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/lestry/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/lestry/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/lestry/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/lestry/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/lestry/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/lestry/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/lestry/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/lestry/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/lestry/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/lestry/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/lestry/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/lestry/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/lestry/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/lestry/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/lestry/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/lestry/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/lestry/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/lestry/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/lestry/app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/lestry/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /android/lestry/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/lestry/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /android/lestry/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/lestry/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/lestry/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/lestry/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /android/lestry/app/src/test/java/com/kiloloco/lestry/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/lestry/app/src/test/java/com/kiloloco/lestry/ExampleUnitTest.kt -------------------------------------------------------------------------------- /android/lestry/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/lestry/build.gradle -------------------------------------------------------------------------------- /android/lestry/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/lestry/gradle.properties -------------------------------------------------------------------------------- /android/lestry/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/lestry/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/lestry/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/lestry/gradlew -------------------------------------------------------------------------------- /android/lestry/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/lestry/gradlew.bat -------------------------------------------------------------------------------- /android/lestry/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = "lestry" 2 | include ':app' 3 | -------------------------------------------------------------------------------- /android/passing-data-with-safe-args/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/passing-data-with-safe-args/.gitignore -------------------------------------------------------------------------------- /android/passing-data-with-safe-args/.idea/.name: -------------------------------------------------------------------------------- 1 | passing-data -------------------------------------------------------------------------------- /android/passing-data-with-safe-args/.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/passing-data-with-safe-args/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /android/passing-data-with-safe-args/.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/passing-data-with-safe-args/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /android/passing-data-with-safe-args/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/passing-data-with-safe-args/.idea/gradle.xml -------------------------------------------------------------------------------- /android/passing-data-with-safe-args/.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/passing-data-with-safe-args/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /android/passing-data-with-safe-args/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/passing-data-with-safe-args/.idea/misc.xml -------------------------------------------------------------------------------- /android/passing-data-with-safe-args/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/passing-data-with-safe-args/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /android/passing-data-with-safe-args/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/passing-data-with-safe-args/.idea/vcs.xml -------------------------------------------------------------------------------- /android/passing-data-with-safe-args/blog/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /android/passing-data-with-safe-args/blog/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/passing-data-with-safe-args/blog/app/build.gradle -------------------------------------------------------------------------------- /android/passing-data-with-safe-args/blog/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/passing-data-with-safe-args/blog/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/passing-data-with-safe-args/blog/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/passing-data-with-safe-args/blog/build.gradle -------------------------------------------------------------------------------- /android/passing-data-with-safe-args/blog/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/passing-data-with-safe-args/blog/gradle.properties -------------------------------------------------------------------------------- /android/passing-data-with-safe-args/blog/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/passing-data-with-safe-args/blog/gradlew -------------------------------------------------------------------------------- /android/passing-data-with-safe-args/blog/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/passing-data-with-safe-args/blog/gradlew.bat -------------------------------------------------------------------------------- /android/passing-data-with-safe-args/blog/local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/passing-data-with-safe-args/blog/local.properties -------------------------------------------------------------------------------- /android/passing-data-with-safe-args/blog/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name = "passing-data" -------------------------------------------------------------------------------- /android/passing-data-with-safe-args/video/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/passing-data-with-safe-args/video/.gitignore -------------------------------------------------------------------------------- /android/passing-data-with-safe-args/video/.idea/.name: -------------------------------------------------------------------------------- 1 | passing-data -------------------------------------------------------------------------------- /android/passing-data-with-safe-args/video/.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/passing-data-with-safe-args/video/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /android/passing-data-with-safe-args/video/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/passing-data-with-safe-args/video/.idea/gradle.xml -------------------------------------------------------------------------------- /android/passing-data-with-safe-args/video/.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/passing-data-with-safe-args/video/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /android/passing-data-with-safe-args/video/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/passing-data-with-safe-args/video/.idea/misc.xml -------------------------------------------------------------------------------- /android/passing-data-with-safe-args/video/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/passing-data-with-safe-args/video/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /android/passing-data-with-safe-args/video/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/passing-data-with-safe-args/video/.idea/vcs.xml -------------------------------------------------------------------------------- /android/passing-data-with-safe-args/video/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /android/passing-data-with-safe-args/video/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/passing-data-with-safe-args/video/app/build.gradle -------------------------------------------------------------------------------- /android/passing-data-with-safe-args/video/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/passing-data-with-safe-args/video/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/passing-data-with-safe-args/video/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/passing-data-with-safe-args/video/build.gradle -------------------------------------------------------------------------------- /android/passing-data-with-safe-args/video/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/passing-data-with-safe-args/video/gradle.properties -------------------------------------------------------------------------------- /android/passing-data-with-safe-args/video/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/passing-data-with-safe-args/video/gradlew -------------------------------------------------------------------------------- /android/passing-data-with-safe-args/video/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/passing-data-with-safe-args/video/gradlew.bat -------------------------------------------------------------------------------- /android/passing-data-with-safe-args/video/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name = "passing-data" -------------------------------------------------------------------------------- /android/recyclerviewnavigationwithfragments/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/recyclerviewnavigationwithfragments/.gitignore -------------------------------------------------------------------------------- /android/recyclerviewnavigationwithfragments/.idea/.name: -------------------------------------------------------------------------------- 1 | recyclerview-navigation-with-fragments -------------------------------------------------------------------------------- /android/recyclerviewnavigationwithfragments/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/recyclerviewnavigationwithfragments/.idea/gradle.xml -------------------------------------------------------------------------------- /android/recyclerviewnavigationwithfragments/.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/recyclerviewnavigationwithfragments/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /android/recyclerviewnavigationwithfragments/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/recyclerviewnavigationwithfragments/.idea/misc.xml -------------------------------------------------------------------------------- /android/recyclerviewnavigationwithfragments/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/recyclerviewnavigationwithfragments/.idea/vcs.xml -------------------------------------------------------------------------------- /android/recyclerviewnavigationwithfragments/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /android/recyclerviewnavigationwithfragments/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/recyclerviewnavigationwithfragments/app/build.gradle -------------------------------------------------------------------------------- /android/recyclerviewnavigationwithfragments/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/recyclerviewnavigationwithfragments/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/recyclerviewnavigationwithfragments/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/recyclerviewnavigationwithfragments/build.gradle -------------------------------------------------------------------------------- /android/recyclerviewnavigationwithfragments/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/recyclerviewnavigationwithfragments/gradle.properties -------------------------------------------------------------------------------- /android/recyclerviewnavigationwithfragments/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/recyclerviewnavigationwithfragments/gradlew -------------------------------------------------------------------------------- /android/recyclerviewnavigationwithfragments/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/recyclerviewnavigationwithfragments/gradlew.bat -------------------------------------------------------------------------------- /android/recyclerviewnavigationwithfragments/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name = "recyclerview-navigation-with-fragments" -------------------------------------------------------------------------------- /android/research/.gradle/6.1.1/executionHistory/executionHistory.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/research/.gradle/6.1.1/executionHistory/executionHistory.bin -------------------------------------------------------------------------------- /android/research/.gradle/6.1.1/executionHistory/executionHistory.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/research/.gradle/6.1.1/executionHistory/executionHistory.lock -------------------------------------------------------------------------------- /android/research/.gradle/6.1.1/fileChanges/last-build.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /android/research/.gradle/6.1.1/fileContent/fileContent.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/research/.gradle/6.1.1/fileContent/fileContent.lock -------------------------------------------------------------------------------- /android/research/.gradle/6.1.1/fileHashes/fileHashes.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/research/.gradle/6.1.1/fileHashes/fileHashes.bin -------------------------------------------------------------------------------- /android/research/.gradle/6.1.1/fileHashes/fileHashes.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/research/.gradle/6.1.1/fileHashes/fileHashes.lock -------------------------------------------------------------------------------- /android/research/.gradle/6.1.1/fileHashes/resourceHashesCache.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/research/.gradle/6.1.1/fileHashes/resourceHashesCache.bin -------------------------------------------------------------------------------- /android/research/.gradle/6.1.1/gc.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /android/research/.gradle/6.1.1/javaCompile/classAnalysis.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/research/.gradle/6.1.1/javaCompile/classAnalysis.bin -------------------------------------------------------------------------------- /android/research/.gradle/6.1.1/javaCompile/jarAnalysis.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/research/.gradle/6.1.1/javaCompile/jarAnalysis.bin -------------------------------------------------------------------------------- /android/research/.gradle/6.1.1/javaCompile/javaCompile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/research/.gradle/6.1.1/javaCompile/javaCompile.lock -------------------------------------------------------------------------------- /android/research/.gradle/6.1.1/javaCompile/taskHistory.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/research/.gradle/6.1.1/javaCompile/taskHistory.bin -------------------------------------------------------------------------------- /android/research/.gradle/buildOutputCleanup/buildOutputCleanup.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/research/.gradle/buildOutputCleanup/buildOutputCleanup.lock -------------------------------------------------------------------------------- /android/research/.gradle/buildOutputCleanup/cache.properties: -------------------------------------------------------------------------------- 1 | #Mon Jul 27 21:50:15 PDT 2020 2 | gradle.version=6.1.1 3 | -------------------------------------------------------------------------------- /android/research/.gradle/buildOutputCleanup/outputFiles.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/research/.gradle/buildOutputCleanup/outputFiles.bin -------------------------------------------------------------------------------- /android/research/.gradle/checksums/checksums.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/research/.gradle/checksums/checksums.lock -------------------------------------------------------------------------------- /android/research/.gradle/checksums/md5-checksums.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/research/.gradle/checksums/md5-checksums.bin -------------------------------------------------------------------------------- /android/research/.gradle/checksums/sha1-checksums.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/research/.gradle/checksums/sha1-checksums.bin -------------------------------------------------------------------------------- /android/research/.gradle/vcs-1/gc.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /android/research/.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/research/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /android/research/.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/research/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /android/research/.idea/libraries/Gradle__junit_junit_4_12_jar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/research/.idea/libraries/Gradle__junit_junit_4_12_jar.xml -------------------------------------------------------------------------------- /android/research/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/research/.idea/modules.xml -------------------------------------------------------------------------------- /android/research/.idea/modules/amplify-auth-web-sign-in.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/research/.idea/modules/amplify-auth-web-sign-in.iml -------------------------------------------------------------------------------- /android/research/.idea/modules/app/app.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/research/.idea/modules/app/app.iml -------------------------------------------------------------------------------- /android/research/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/research/.idea/vcs.xml -------------------------------------------------------------------------------- /android/research/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/research/.idea/workspace.xml -------------------------------------------------------------------------------- /android/research/local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/research/local.properties -------------------------------------------------------------------------------- /android/upload-files-amplify/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/upload-files-amplify/.gitignore -------------------------------------------------------------------------------- /android/upload-files-amplify/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /android/upload-files-amplify/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/upload-files-amplify/.idea/compiler.xml -------------------------------------------------------------------------------- /android/upload-files-amplify/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/upload-files-amplify/.idea/gradle.xml -------------------------------------------------------------------------------- /android/upload-files-amplify/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/upload-files-amplify/.idea/misc.xml -------------------------------------------------------------------------------- /android/upload-files-amplify/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/upload-files-amplify/.idea/vcs.xml -------------------------------------------------------------------------------- /android/upload-files-amplify/amplify/.config/project-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/upload-files-amplify/amplify/.config/project-config.json -------------------------------------------------------------------------------- /android/upload-files-amplify/amplify/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/upload-files-amplify/amplify/README.md -------------------------------------------------------------------------------- /android/upload-files-amplify/amplify/backend/backend-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/upload-files-amplify/amplify/backend/backend-config.json -------------------------------------------------------------------------------- /android/upload-files-amplify/amplify/backend/tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/upload-files-amplify/amplify/backend/tags.json -------------------------------------------------------------------------------- /android/upload-files-amplify/amplify/cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/upload-files-amplify/amplify/cli.json -------------------------------------------------------------------------------- /android/upload-files-amplify/amplify/hooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/upload-files-amplify/amplify/hooks/README.md -------------------------------------------------------------------------------- /android/upload-files-amplify/amplify/team-provider-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/upload-files-amplify/amplify/team-provider-info.json -------------------------------------------------------------------------------- /android/upload-files-amplify/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /android/upload-files-amplify/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/upload-files-amplify/app/build.gradle -------------------------------------------------------------------------------- /android/upload-files-amplify/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/upload-files-amplify/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/upload-files-amplify/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/upload-files-amplify/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/upload-files-amplify/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/upload-files-amplify/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /android/upload-files-amplify/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/upload-files-amplify/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/upload-files-amplify/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/upload-files-amplify/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /android/upload-files-amplify/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/upload-files-amplify/build.gradle -------------------------------------------------------------------------------- /android/upload-files-amplify/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/upload-files-amplify/gradle.properties -------------------------------------------------------------------------------- /android/upload-files-amplify/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/upload-files-amplify/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/upload-files-amplify/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/upload-files-amplify/gradlew -------------------------------------------------------------------------------- /android/upload-files-amplify/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/upload-files-amplify/gradlew.bat -------------------------------------------------------------------------------- /android/upload-files-amplify/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/upload-files-amplify/settings.gradle -------------------------------------------------------------------------------- /android/upload-to-s3-android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/upload-to-s3-android/.gitignore -------------------------------------------------------------------------------- /android/upload-to-s3-android/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /android/upload-to-s3-android/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/upload-to-s3-android/.idea/compiler.xml -------------------------------------------------------------------------------- /android/upload-to-s3-android/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/upload-to-s3-android/.idea/gradle.xml -------------------------------------------------------------------------------- /android/upload-to-s3-android/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/upload-to-s3-android/.idea/misc.xml -------------------------------------------------------------------------------- /android/upload-to-s3-android/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/upload-to-s3-android/.idea/vcs.xml -------------------------------------------------------------------------------- /android/upload-to-s3-android/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /android/upload-to-s3-android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/upload-to-s3-android/app/build.gradle -------------------------------------------------------------------------------- /android/upload-to-s3-android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/upload-to-s3-android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/upload-to-s3-android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/upload-to-s3-android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/upload-to-s3-android/app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/upload-to-s3-android/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /android/upload-to-s3-android/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/upload-to-s3-android/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /android/upload-to-s3-android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/upload-to-s3-android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/upload-to-s3-android/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/upload-to-s3-android/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /android/upload-to-s3-android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/upload-to-s3-android/build.gradle -------------------------------------------------------------------------------- /android/upload-to-s3-android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/upload-to-s3-android/gradle.properties -------------------------------------------------------------------------------- /android/upload-to-s3-android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/upload-to-s3-android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/upload-to-s3-android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/upload-to-s3-android/gradlew -------------------------------------------------------------------------------- /android/upload-to-s3-android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/upload-to-s3-android/gradlew.bat -------------------------------------------------------------------------------- /android/upload-to-s3-android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/android/upload-to-s3-android/settings.gradle -------------------------------------------------------------------------------- /apple/AmplifyStorageSwiftUIImage/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/AmplifyStorageSwiftUIImage/.gitignore -------------------------------------------------------------------------------- /apple/AmplifyStorageSwiftUIImage/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/AmplifyStorageSwiftUIImage/.vscode/settings.json -------------------------------------------------------------------------------- /apple/AmplifyStorageSwiftUIImage/amplify/.config/project-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/AmplifyStorageSwiftUIImage/amplify/.config/project-config.json -------------------------------------------------------------------------------- /apple/AmplifyStorageSwiftUIImage/amplify/cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/AmplifyStorageSwiftUIImage/amplify/cli.json -------------------------------------------------------------------------------- /apple/AmplifyStorageSwiftUIImage/amplify/generated/models/User.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/AmplifyStorageSwiftUIImage/amplify/generated/models/User.swift -------------------------------------------------------------------------------- /apple/AmplifyStorageSwiftUIImage/amplify/team-provider-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/AmplifyStorageSwiftUIImage/amplify/team-provider-info.json -------------------------------------------------------------------------------- /apple/add-package-product-xcode/Add Package Product/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/add-package-product-xcode/Add Package Product/ContentView.swift -------------------------------------------------------------------------------- /apple/amplify-api-realtime-chat/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/amplify-api-realtime-chat/.gitignore -------------------------------------------------------------------------------- /apple/amplify-api-realtime-chat/.graphqlconfig.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/amplify-api-realtime-chat/.graphqlconfig.yml -------------------------------------------------------------------------------- /apple/amplify-api-realtime-chat/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/amplify-api-realtime-chat/Podfile -------------------------------------------------------------------------------- /apple/amplify-api-realtime-chat/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/amplify-api-realtime-chat/Podfile.lock -------------------------------------------------------------------------------- /apple/amplify-api-realtime-chat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/amplify-api-realtime-chat/README.md -------------------------------------------------------------------------------- /apple/amplify-api-realtime-chat/amplify-api-realtime-chat/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/amplify-api-realtime-chat/amplify-api-realtime-chat/Info.plist -------------------------------------------------------------------------------- /apple/amplify-api-realtime-chat/graphql/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/amplify-api-realtime-chat/graphql/schema.json -------------------------------------------------------------------------------- /apple/amplify-app-ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/amplify-app-ios/.gitignore -------------------------------------------------------------------------------- /apple/amplify-app-ios/.graphqlconfig.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/amplify-app-ios/.graphqlconfig.yml -------------------------------------------------------------------------------- /apple/amplify-app-ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/amplify-app-ios/Podfile -------------------------------------------------------------------------------- /apple/amplify-app-ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/amplify-app-ios/Podfile.lock -------------------------------------------------------------------------------- /apple/amplify-app-ios/amplify-app-ios.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/amplify-app-ios/amplify-app-ios.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /apple/amplify-app-ios/amplify-app-ios/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/amplify-app-ios/amplify-app-ios/AppDelegate.swift -------------------------------------------------------------------------------- /apple/amplify-app-ios/amplify-app-ios/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/amplify-app-ios/amplify-app-ios/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /apple/amplify-app-ios/amplify-app-ios/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/amplify-app-ios/amplify-app-ios/ContentView.swift -------------------------------------------------------------------------------- /apple/amplify-app-ios/amplify-app-ios/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/amplify-app-ios/amplify-app-ios/Info.plist -------------------------------------------------------------------------------- /apple/amplify-app-ios/amplify-app-ios/amplify_app_iosApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/amplify-app-ios/amplify-app-ios/amplify_app_iosApp.swift -------------------------------------------------------------------------------- /apple/amplify-app-ios/graphql/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/amplify-app-ios/graphql/schema.json -------------------------------------------------------------------------------- /apple/amplify-auth-getting-started/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/amplify-auth-getting-started/.gitignore -------------------------------------------------------------------------------- /apple/amplify-auth-getting-started/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/amplify-auth-getting-started/Podfile -------------------------------------------------------------------------------- /apple/amplify-auth-getting-started/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/amplify-auth-getting-started/Podfile.lock -------------------------------------------------------------------------------- /apple/amplify-auth-web-ui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/amplify-auth-web-ui/README.md -------------------------------------------------------------------------------- /apple/amplify-auth-web-ui/research/blog/Auth-Web-UI/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/amplify-auth-web-ui/research/blog/Auth-Web-UI/.gitignore -------------------------------------------------------------------------------- /apple/amplify-auth-web-ui/research/blog/Auth-Web-UI/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/amplify-auth-web-ui/research/blog/Auth-Web-UI/Podfile -------------------------------------------------------------------------------- /apple/amplify-auth-web-ui/research/blog/Auth-Web-UI/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/amplify-auth-web-ui/research/blog/Auth-Web-UI/Podfile.lock -------------------------------------------------------------------------------- /apple/amplify-auth-web-ui/research/blog/Auth-Web-UI/amplify.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/amplify-auth-web-ui/research/blog/Auth-Web-UI/amplify.json -------------------------------------------------------------------------------- /apple/amplify-auth-web-ui/research/video/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/amplify-auth-web-ui/research/video/.gitignore -------------------------------------------------------------------------------- /apple/amplify-auth-web-ui/research/video/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/amplify-auth-web-ui/research/video/Podfile -------------------------------------------------------------------------------- /apple/amplify-auth-web-ui/research/video/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/amplify-auth-web-ui/research/video/Podfile.lock -------------------------------------------------------------------------------- /apple/amplify-auth-web-ui/video-final/Auth-Web-UI/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/amplify-auth-web-ui/video-final/Auth-Web-UI/.gitignore -------------------------------------------------------------------------------- /apple/amplify-auth-web-ui/video-final/Auth-Web-UI/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/amplify-auth-web-ui/video-final/Auth-Web-UI/Podfile -------------------------------------------------------------------------------- /apple/amplify-auth-web-ui/video-final/Auth-Web-UI/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/amplify-auth-web-ui/video-final/Auth-Web-UI/Podfile.lock -------------------------------------------------------------------------------- /apple/amplify-auth-web-ui/video-final/Auth-Web-UI/amplify.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/amplify-auth-web-ui/video-final/Auth-Web-UI/amplify.json -------------------------------------------------------------------------------- /apple/amplify-datastore-geo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/amplify-datastore-geo/.gitignore -------------------------------------------------------------------------------- /apple/amplify-datastore-geo/amplify-datastore-geo/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/amplify-datastore-geo/amplify-datastore-geo/ContentView.swift -------------------------------------------------------------------------------- /apple/amplify-datastore-geo/amplify/.config/project-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/amplify-datastore-geo/amplify/.config/project-config.json -------------------------------------------------------------------------------- /apple/amplify-datastore-geo/amplify/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/amplify-datastore-geo/amplify/README.md -------------------------------------------------------------------------------- /apple/amplify-datastore-geo/amplify/backend/backend-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/amplify-datastore-geo/amplify/backend/backend-config.json -------------------------------------------------------------------------------- /apple/amplify-datastore-geo/amplify/backend/geo/map97556dc6/cli-inputs.json: -------------------------------------------------------------------------------- 1 | { 2 | "groupPermissions": [] 3 | } -------------------------------------------------------------------------------- /apple/amplify-datastore-geo/amplify/backend/tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/amplify-datastore-geo/amplify/backend/tags.json -------------------------------------------------------------------------------- /apple/amplify-datastore-geo/amplify/cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/amplify-datastore-geo/amplify/cli.json -------------------------------------------------------------------------------- /apple/amplify-datastore-geo/amplify/generated/models/Location.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/amplify-datastore-geo/amplify/generated/models/Location.swift -------------------------------------------------------------------------------- /apple/amplify-datastore-geo/amplify/hooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/amplify-datastore-geo/amplify/hooks/README.md -------------------------------------------------------------------------------- /apple/amplify-datastore-geo/amplify/team-provider-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/amplify-datastore-geo/amplify/team-provider-info.json -------------------------------------------------------------------------------- /apple/amplify-datastore-storage/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/amplify-datastore-storage/.gitignore -------------------------------------------------------------------------------- /apple/amplify-datastore-storage/.graphqlconfig.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/amplify-datastore-storage/.graphqlconfig.yml -------------------------------------------------------------------------------- /apple/amplify-datastore-storage/API.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/amplify-datastore-storage/API.swift -------------------------------------------------------------------------------- /apple/amplify-datastore-storage/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/amplify-datastore-storage/Podfile -------------------------------------------------------------------------------- /apple/amplify-datastore-storage/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/amplify-datastore-storage/Podfile.lock -------------------------------------------------------------------------------- /apple/amplify-datastore-storage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/amplify-datastore-storage/README.md -------------------------------------------------------------------------------- /apple/amplify-datastore-storage/amplify-datastore-storage/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/amplify-datastore-storage/amplify-datastore-storage/Info.plist -------------------------------------------------------------------------------- /apple/amplify-datastore-storage/amplify.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/amplify-datastore-storage/amplify.json -------------------------------------------------------------------------------- /apple/amplify-datastore-storage/amplify/.config/project-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/amplify-datastore-storage/amplify/.config/project-config.json -------------------------------------------------------------------------------- /apple/amplify-datastore-storage/amplify/backend/backend-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/amplify-datastore-storage/amplify/backend/backend-config.json -------------------------------------------------------------------------------- /apple/amplify-datastore-storage/amplify/backend/storage/s37be4901e/storage-params.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /apple/amplify-datastore-storage/amplify/generated/models/Post.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/amplify-datastore-storage/amplify/generated/models/Post.swift -------------------------------------------------------------------------------- /apple/amplify-datastore-storage/amplify/team-provider-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/amplify-datastore-storage/amplify/team-provider-info.json -------------------------------------------------------------------------------- /apple/amplify-datastore-storage/graphql/mutations.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/amplify-datastore-storage/graphql/mutations.graphql -------------------------------------------------------------------------------- /apple/amplify-datastore-storage/graphql/queries.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/amplify-datastore-storage/graphql/queries.graphql -------------------------------------------------------------------------------- /apple/amplify-datastore-storage/graphql/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/amplify-datastore-storage/graphql/schema.json -------------------------------------------------------------------------------- /apple/amplify-datastore-storage/graphql/subscriptions.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/amplify-datastore-storage/graphql/subscriptions.graphql -------------------------------------------------------------------------------- /apple/amplify-ios-import-bucket/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/amplify-ios-import-bucket/.gitignore -------------------------------------------------------------------------------- /apple/amplify-ios-import-bucket/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/amplify-ios-import-bucket/.vscode/settings.json -------------------------------------------------------------------------------- /apple/amplify-ios-import-bucket/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/amplify-ios-import-bucket/Podfile -------------------------------------------------------------------------------- /apple/amplify-ios-import-bucket/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/amplify-ios-import-bucket/Podfile.lock -------------------------------------------------------------------------------- /apple/amplify-ios-import-bucket/amplify-ios-import-bucket/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/amplify-ios-import-bucket/amplify-ios-import-bucket/Info.plist -------------------------------------------------------------------------------- /apple/amplify-ios-import-bucket/amplify/.config/project-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/amplify-ios-import-bucket/amplify/.config/project-config.json -------------------------------------------------------------------------------- /apple/amplify-ios-import-bucket/amplify/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/amplify-ios-import-bucket/amplify/README.md -------------------------------------------------------------------------------- /apple/amplify-ios-import-bucket/amplify/backend/backend-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/amplify-ios-import-bucket/amplify/backend/backend-config.json -------------------------------------------------------------------------------- /apple/amplify-ios-import-bucket/amplify/backend/tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/amplify-ios-import-bucket/amplify/backend/tags.json -------------------------------------------------------------------------------- /apple/amplify-ios-import-bucket/amplify/cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/amplify-ios-import-bucket/amplify/cli.json -------------------------------------------------------------------------------- /apple/amplify-ios-import-bucket/amplify/team-provider-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/amplify-ios-import-bucket/amplify/team-provider-info.json -------------------------------------------------------------------------------- /apple/amplify-ios-multifactor-auth/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/amplify-ios-multifactor-auth/.gitignore -------------------------------------------------------------------------------- /apple/amplify-ios-multifactor-auth/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/amplify-ios-multifactor-auth/.vscode/settings.json -------------------------------------------------------------------------------- /apple/amplify-ios-multifactor-auth/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/amplify-ios-multifactor-auth/Podfile -------------------------------------------------------------------------------- /apple/amplify-ios-multifactor-auth/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/amplify-ios-multifactor-auth/Podfile.lock -------------------------------------------------------------------------------- /apple/amplify-ios-multifactor-auth/amplify/.config/project-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/amplify-ios-multifactor-auth/amplify/.config/project-config.json -------------------------------------------------------------------------------- /apple/amplify-ios-multifactor-auth/amplify/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/amplify-ios-multifactor-auth/amplify/README.md -------------------------------------------------------------------------------- /apple/amplify-ios-multifactor-auth/amplify/backend/backend-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/amplify-ios-multifactor-auth/amplify/backend/backend-config.json -------------------------------------------------------------------------------- /apple/amplify-ios-multifactor-auth/amplify/backend/tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/amplify-ios-multifactor-auth/amplify/backend/tags.json -------------------------------------------------------------------------------- /apple/amplify-ios-multifactor-auth/amplify/cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/amplify-ios-multifactor-auth/amplify/cli.json -------------------------------------------------------------------------------- /apple/amplify-ios-multifactor-auth/amplify/team-provider-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/amplify-ios-multifactor-auth/amplify/team-provider-info.json -------------------------------------------------------------------------------- /apple/amplify-ios-sign-in/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/amplify-ios-sign-in/.gitignore -------------------------------------------------------------------------------- /apple/amplify-ios-sign-in/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/amplify-ios-sign-in/.vscode/settings.json -------------------------------------------------------------------------------- /apple/amplify-ios-sign-in/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/amplify-ios-sign-in/Podfile -------------------------------------------------------------------------------- /apple/amplify-ios-sign-in/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/amplify-ios-sign-in/Podfile.lock -------------------------------------------------------------------------------- /apple/amplify-ios-sign-in/amplify-ios-sign-in/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/amplify-ios-sign-in/amplify-ios-sign-in/ContentView.swift -------------------------------------------------------------------------------- /apple/amplify-ios-sign-in/amplify-ios-sign-in/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/amplify-ios-sign-in/amplify-ios-sign-in/Info.plist -------------------------------------------------------------------------------- /apple/amplify-ios-sign-in/amplify/.config/project-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/amplify-ios-sign-in/amplify/.config/project-config.json -------------------------------------------------------------------------------- /apple/amplify-ios-sign-in/amplify/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/amplify-ios-sign-in/amplify/README.md -------------------------------------------------------------------------------- /apple/amplify-ios-sign-in/amplify/backend/backend-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/amplify-ios-sign-in/amplify/backend/backend-config.json -------------------------------------------------------------------------------- /apple/amplify-ios-sign-in/amplify/backend/tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/amplify-ios-sign-in/amplify/backend/tags.json -------------------------------------------------------------------------------- /apple/amplify-ios-sign-in/amplify/cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/amplify-ios-sign-in/amplify/cli.json -------------------------------------------------------------------------------- /apple/amplify-ios-sign-in/amplify/team-provider-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/amplify-ios-sign-in/amplify/team-provider-info.json -------------------------------------------------------------------------------- /apple/amplify-storage-getting-started/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/amplify-storage-getting-started/.gitignore -------------------------------------------------------------------------------- /apple/amplify-storage-getting-started/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/amplify-storage-getting-started/Podfile -------------------------------------------------------------------------------- /apple/amplify-storage-getting-started/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/amplify-storage-getting-started/Podfile.lock -------------------------------------------------------------------------------- /apple/conditional-modifier/conditional-modifier/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/conditional-modifier/conditional-modifier/ContentView.swift -------------------------------------------------------------------------------- /apple/device-location-ios/device-location-ios/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/device-location-ios/device-location-ios/ContentView.swift -------------------------------------------------------------------------------- /apple/hello-amplify/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/hello-amplify/.gitignore -------------------------------------------------------------------------------- /apple/hello-amplify/amplify/.config/project-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/hello-amplify/amplify/.config/project-config.json -------------------------------------------------------------------------------- /apple/hello-amplify/amplify/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/hello-amplify/amplify/README.md -------------------------------------------------------------------------------- /apple/hello-amplify/amplify/backend/backend-config.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /apple/hello-amplify/amplify/backend/tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/hello-amplify/amplify/backend/tags.json -------------------------------------------------------------------------------- /apple/hello-amplify/amplify/backend/types/amplify-dependent-resources-ref.d.ts: -------------------------------------------------------------------------------- 1 | export type AmplifyDependentResourcesAttributes = {} -------------------------------------------------------------------------------- /apple/hello-amplify/amplify/cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/hello-amplify/amplify/cli.json -------------------------------------------------------------------------------- /apple/hello-amplify/amplify/hooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/hello-amplify/amplify/hooks/README.md -------------------------------------------------------------------------------- /apple/hello-amplify/amplify/team-provider-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/hello-amplify/amplify/team-provider-info.json -------------------------------------------------------------------------------- /apple/hello-amplify/hello-amplify.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/hello-amplify/hello-amplify.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /apple/hello-amplify/hello-amplify/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/hello-amplify/hello-amplify/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /apple/hello-amplify/hello-amplify/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/hello-amplify/hello-amplify/ContentView.swift -------------------------------------------------------------------------------- /apple/hello-amplify/hello-amplify/hello_amplifyApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/hello-amplify/hello-amplify/hello_amplifyApp.swift -------------------------------------------------------------------------------- /apple/macos-navigation/macos-navigation.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/macos-navigation/macos-navigation.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /apple/macos-navigation/macos-navigation/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/macos-navigation/macos-navigation/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /apple/macos-navigation/macos-navigation/ColumnView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/macos-navigation/macos-navigation/ColumnView.swift -------------------------------------------------------------------------------- /apple/macos-navigation/macos-navigation/ContentViews.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/macos-navigation/macos-navigation/ContentViews.swift -------------------------------------------------------------------------------- /apple/macos-navigation/macos-navigation/macos_navigation.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/macos-navigation/macos-navigation/macos_navigation.entitlements -------------------------------------------------------------------------------- /apple/macos-navigation/macos-navigation/macos_navigationApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/macos-navigation/macos-navigation/macos_navigationApp.swift -------------------------------------------------------------------------------- /apple/migrating-to-combine/blog/migrating-to-combine/Animal.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/migrating-to-combine/blog/migrating-to-combine/Animal.swift -------------------------------------------------------------------------------- /apple/migrating-to-combine/blog/migrating-to-combine/AnimalCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/migrating-to-combine/blog/migrating-to-combine/AnimalCell.swift -------------------------------------------------------------------------------- /apple/migrating-to-combine/blog/migrating-to-combine/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/migrating-to-combine/blog/migrating-to-combine/AppDelegate.swift -------------------------------------------------------------------------------- /apple/migrating-to-combine/blog/migrating-to-combine/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/migrating-to-combine/blog/migrating-to-combine/Info.plist -------------------------------------------------------------------------------- /apple/migrating-to-combine/video/migrating-to-combine/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/migrating-to-combine/video/migrating-to-combine/README.md -------------------------------------------------------------------------------- /apple/not-github/Not GitHub Widget/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/not-github/Not GitHub Widget/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /apple/not-github/Not GitHub Widget/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/not-github/Not GitHub Widget/Info.plist -------------------------------------------------------------------------------- /apple/not-github/Not GitHub Widget/Not_GitHub_Widget.intentdefinition: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/not-github/Not GitHub Widget/Not_GitHub_Widget.intentdefinition -------------------------------------------------------------------------------- /apple/not-github/Not GitHub Widget/Not_GitHub_Widget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/not-github/Not GitHub Widget/Not_GitHub_Widget.swift -------------------------------------------------------------------------------- /apple/not-github/not-github.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/not-github/not-github.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /apple/not-github/not-github/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/not-github/not-github/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /apple/not-github/not-github/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/not-github/not-github/ContentView.swift -------------------------------------------------------------------------------- /apple/not-github/not-github/ContributionsGraphView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/not-github/not-github/ContributionsGraphView.swift -------------------------------------------------------------------------------- /apple/not-github/not-github/DateService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/not-github/not-github/DateService.swift -------------------------------------------------------------------------------- /apple/not-github/not-github/DevelopmentDay.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/not-github/not-github/DevelopmentDay.swift -------------------------------------------------------------------------------- /apple/not-github/not-github/GitHubParser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/not-github/not-github/GitHubParser.swift -------------------------------------------------------------------------------- /apple/not-github/not-github/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/not-github/not-github/Info.plist -------------------------------------------------------------------------------- /apple/not-github/not-github/not_githubApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/not-github/not-github/not_githubApp.swift -------------------------------------------------------------------------------- /apple/push-notifications/push-notifications-ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/push-notifications/push-notifications-ios/.gitignore -------------------------------------------------------------------------------- /apple/push-notifications/push-notifications-ios/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/push-notifications/push-notifications-ios/.vscode/settings.json -------------------------------------------------------------------------------- /apple/push-notifications/push-notifications-ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/push-notifications/push-notifications-ios/Podfile -------------------------------------------------------------------------------- /apple/push-notifications/push-notifications-ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/push-notifications/push-notifications-ios/Podfile.lock -------------------------------------------------------------------------------- /apple/push-notifications/push-notifications-ios/amplify/cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/push-notifications/push-notifications-ios/amplify/cli.json -------------------------------------------------------------------------------- /apple/push-notifications/push-notifications-lambda/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /.build 3 | /Packages 4 | /*.xcodeproj 5 | xcuserdata/ 6 | -------------------------------------------------------------------------------- /apple/push-notifications/push-notifications-lambda/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/push-notifications/push-notifications-lambda/Dockerfile -------------------------------------------------------------------------------- /apple/push-notifications/push-notifications-lambda/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/push-notifications/push-notifications-lambda/Package.swift -------------------------------------------------------------------------------- /apple/push-notifications/push-notifications-lambda/README.md: -------------------------------------------------------------------------------- 1 | # push-notifications-lambda 2 | 3 | A description of this package. 4 | -------------------------------------------------------------------------------- /apple/push-notifications/push-notifications-lambda/scripts/package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/push-notifications/push-notifications-lambda/scripts/package.sh -------------------------------------------------------------------------------- /apple/remote-image-swiftui/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/remote-image-swiftui/.gitignore -------------------------------------------------------------------------------- /apple/remote-image-swiftui/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/remote-image-swiftui/.vscode/settings.json -------------------------------------------------------------------------------- /apple/remote-image-swiftui/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/remote-image-swiftui/Podfile -------------------------------------------------------------------------------- /apple/remote-image-swiftui/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/remote-image-swiftui/Podfile.lock -------------------------------------------------------------------------------- /apple/remote-image-swiftui/amplify/.config/project-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/remote-image-swiftui/amplify/.config/project-config.json -------------------------------------------------------------------------------- /apple/remote-image-swiftui/amplify/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/remote-image-swiftui/amplify/README.md -------------------------------------------------------------------------------- /apple/remote-image-swiftui/amplify/backend/backend-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/remote-image-swiftui/amplify/backend/backend-config.json -------------------------------------------------------------------------------- /apple/remote-image-swiftui/amplify/backend/tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/remote-image-swiftui/amplify/backend/tags.json -------------------------------------------------------------------------------- /apple/remote-image-swiftui/amplify/cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/remote-image-swiftui/amplify/cli.json -------------------------------------------------------------------------------- /apple/remote-image-swiftui/amplify/team-provider-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/remote-image-swiftui/amplify/team-provider-info.json -------------------------------------------------------------------------------- /apple/remote-image-swiftui/remote-image-swiftui/AmplifyService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/remote-image-swiftui/remote-image-swiftui/AmplifyService.swift -------------------------------------------------------------------------------- /apple/remote-image-swiftui/remote-image-swiftui/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/remote-image-swiftui/remote-image-swiftui/ContentView.swift -------------------------------------------------------------------------------- /apple/remote-image-swiftui/remote-image-swiftui/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/remote-image-swiftui/remote-image-swiftui/Info.plist -------------------------------------------------------------------------------- /apple/remote-image-swiftui/remote-image-swiftui/Post.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/remote-image-swiftui/remote-image-swiftui/Post.swift -------------------------------------------------------------------------------- /apple/remote-image-swiftui/remote-image-swiftui/RemoteImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/remote-image-swiftui/remote-image-swiftui/RemoteImage.swift -------------------------------------------------------------------------------- /apple/shopping-cart/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/shopping-cart/.gitignore -------------------------------------------------------------------------------- /apple/shopping-cart/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/shopping-cart/Podfile -------------------------------------------------------------------------------- /apple/shopping-cart/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/shopping-cart/Podfile.lock -------------------------------------------------------------------------------- /apple/shopping-cart/amplify/.config/project-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/shopping-cart/amplify/.config/project-config.json -------------------------------------------------------------------------------- /apple/shopping-cart/amplify/backend/backend-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/shopping-cart/amplify/backend/backend-config.json -------------------------------------------------------------------------------- /apple/shopping-cart/amplify/cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/shopping-cart/amplify/cli.json -------------------------------------------------------------------------------- /apple/shopping-cart/amplify/generated/models/AmplifyModels.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/shopping-cart/amplify/generated/models/AmplifyModels.swift -------------------------------------------------------------------------------- /apple/shopping-cart/amplify/generated/models/Cart+Schema.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/shopping-cart/amplify/generated/models/Cart+Schema.swift -------------------------------------------------------------------------------- /apple/shopping-cart/amplify/generated/models/Cart.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/shopping-cart/amplify/generated/models/Cart.swift -------------------------------------------------------------------------------- /apple/shopping-cart/amplify/generated/models/CartProduct+Schema.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/shopping-cart/amplify/generated/models/CartProduct+Schema.swift -------------------------------------------------------------------------------- /apple/shopping-cart/amplify/generated/models/CartProduct.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/shopping-cart/amplify/generated/models/CartProduct.swift -------------------------------------------------------------------------------- /apple/shopping-cart/amplify/generated/models/Product+Schema.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/shopping-cart/amplify/generated/models/Product+Schema.swift -------------------------------------------------------------------------------- /apple/shopping-cart/amplify/generated/models/Product.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/shopping-cart/amplify/generated/models/Product.swift -------------------------------------------------------------------------------- /apple/shopping-cart/shopping-cart.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/shopping-cart/shopping-cart.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /apple/shopping-cart/shopping-cart/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/shopping-cart/shopping-cart/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /apple/shopping-cart/shopping-cart/CartView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/shopping-cart/shopping-cart/CartView.swift -------------------------------------------------------------------------------- /apple/shopping-cart/shopping-cart/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/shopping-cart/shopping-cart/Info.plist -------------------------------------------------------------------------------- /apple/shopping-cart/shopping-cart/NewProductView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/shopping-cart/shopping-cart/NewProductView.swift -------------------------------------------------------------------------------- /apple/shopping-cart/shopping-cart/ProductsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/shopping-cart/shopping-cart/ProductsView.swift -------------------------------------------------------------------------------- /apple/shopping-cart/shopping-cart/shopping_cartApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/shopping-cart/shopping-cart/shopping_cartApp.swift -------------------------------------------------------------------------------- /apple/siwa-swiftui/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/siwa-swiftui/.gitignore -------------------------------------------------------------------------------- /apple/siwa-swiftui/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/siwa-swiftui/.vscode/settings.json -------------------------------------------------------------------------------- /apple/siwa-swiftui/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/siwa-swiftui/Podfile -------------------------------------------------------------------------------- /apple/siwa-swiftui/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/siwa-swiftui/Podfile.lock -------------------------------------------------------------------------------- /apple/siwa-swiftui/amplify/.config/project-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/siwa-swiftui/amplify/.config/project-config.json -------------------------------------------------------------------------------- /apple/siwa-swiftui/amplify/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/siwa-swiftui/amplify/README.md -------------------------------------------------------------------------------- /apple/siwa-swiftui/amplify/backend/backend-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/siwa-swiftui/amplify/backend/backend-config.json -------------------------------------------------------------------------------- /apple/siwa-swiftui/amplify/backend/tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/siwa-swiftui/amplify/backend/tags.json -------------------------------------------------------------------------------- /apple/siwa-swiftui/amplify/cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/siwa-swiftui/amplify/cli.json -------------------------------------------------------------------------------- /apple/siwa-swiftui/amplify/team-provider-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/siwa-swiftui/amplify/team-provider-info.json -------------------------------------------------------------------------------- /apple/siwa-swiftui/siwa-swiftui.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/siwa-swiftui/siwa-swiftui.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /apple/siwa-swiftui/siwa-swiftui/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/siwa-swiftui/siwa-swiftui/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /apple/siwa-swiftui/siwa-swiftui/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/siwa-swiftui/siwa-swiftui/ContentView.swift -------------------------------------------------------------------------------- /apple/siwa-swiftui/siwa-swiftui/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/siwa-swiftui/siwa-swiftui/Info.plist -------------------------------------------------------------------------------- /apple/siwa-swiftui/siwa-swiftui/siwa-swiftui.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/siwa-swiftui/siwa-swiftui/siwa-swiftui.entitlements -------------------------------------------------------------------------------- /apple/siwa-swiftui/siwa-swiftui/siwa_swiftuiApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/siwa-swiftui/siwa-swiftui/siwa_swiftuiApp.swift -------------------------------------------------------------------------------- /apple/speedrun-three-apps/chatty/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/speedrun-three-apps/chatty/.gitignore -------------------------------------------------------------------------------- /apple/speedrun-three-apps/chatty/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/speedrun-three-apps/chatty/Podfile -------------------------------------------------------------------------------- /apple/speedrun-three-apps/chatty/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/speedrun-three-apps/chatty/Podfile.lock -------------------------------------------------------------------------------- /apple/speedrun-three-apps/chatty/amplify/.config/project-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/speedrun-three-apps/chatty/amplify/.config/project-config.json -------------------------------------------------------------------------------- /apple/speedrun-three-apps/chatty/amplify/backend/backend-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/speedrun-three-apps/chatty/amplify/backend/backend-config.json -------------------------------------------------------------------------------- /apple/speedrun-three-apps/chatty/amplify/cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/speedrun-three-apps/chatty/amplify/cli.json -------------------------------------------------------------------------------- /apple/speedrun-three-apps/chatty/amplify/generated/models/User.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/speedrun-three-apps/chatty/amplify/generated/models/User.swift -------------------------------------------------------------------------------- /apple/speedrun-three-apps/chatty/chatty.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/speedrun-three-apps/chatty/chatty.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /apple/speedrun-three-apps/chatty/chatty/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/speedrun-three-apps/chatty/chatty/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /apple/speedrun-three-apps/chatty/chatty/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/speedrun-three-apps/chatty/chatty/ContentView.swift -------------------------------------------------------------------------------- /apple/speedrun-three-apps/chatty/chatty/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/speedrun-three-apps/chatty/chatty/Info.plist -------------------------------------------------------------------------------- /apple/speedrun-three-apps/chatty/chatty/Message+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/speedrun-three-apps/chatty/chatty/Message+Extensions.swift -------------------------------------------------------------------------------- /apple/speedrun-three-apps/chatty/chatty/MessagesView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/speedrun-three-apps/chatty/chatty/MessagesView.swift -------------------------------------------------------------------------------- /apple/speedrun-three-apps/chatty/chatty/chattyApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/speedrun-three-apps/chatty/chatty/chattyApp.swift -------------------------------------------------------------------------------- /apple/speedrun-three-apps/global-chat/.Podfile.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/speedrun-three-apps/global-chat/.Podfile.swp -------------------------------------------------------------------------------- /apple/speedrun-three-apps/global-chat/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/speedrun-three-apps/global-chat/.gitignore -------------------------------------------------------------------------------- /apple/speedrun-three-apps/global-chat/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/speedrun-three-apps/global-chat/Podfile -------------------------------------------------------------------------------- /apple/speedrun-three-apps/global-chat/amplify/cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/speedrun-three-apps/global-chat/amplify/cli.json -------------------------------------------------------------------------------- /apple/speedrun-three-apps/global-chat/global-chat/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/speedrun-three-apps/global-chat/global-chat/ContentView.swift -------------------------------------------------------------------------------- /apple/speedrun-three-apps/global-chat/global-chat/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/speedrun-three-apps/global-chat/global-chat/Info.plist -------------------------------------------------------------------------------- /apple/speedrun-three-apps/global-chat/global-chat/global_chatApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/speedrun-three-apps/global-chat/global-chat/global_chatApp.swift -------------------------------------------------------------------------------- /apple/speedrun-three-apps/hi-resolution/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/speedrun-three-apps/hi-resolution/Podfile -------------------------------------------------------------------------------- /apple/speedrun-three-apps/hi-resolution/hi-resolution/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/speedrun-three-apps/hi-resolution/hi-resolution/Info.plist -------------------------------------------------------------------------------- /apple/speedrun-three-apps/quick-note/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/speedrun-three-apps/quick-note/.gitignore -------------------------------------------------------------------------------- /apple/speedrun-three-apps/quick-note/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/speedrun-three-apps/quick-note/Podfile -------------------------------------------------------------------------------- /apple/speedrun-three-apps/quick-note/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/speedrun-three-apps/quick-note/Podfile.lock -------------------------------------------------------------------------------- /apple/speedrun-three-apps/quick-note/amplify/cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/speedrun-three-apps/quick-note/amplify/cli.json -------------------------------------------------------------------------------- /apple/speedrun-three-apps/quick-note/quick-note/AmplifyModels.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/speedrun-three-apps/quick-note/quick-note/AmplifyModels.swift -------------------------------------------------------------------------------- /apple/speedrun-three-apps/quick-note/quick-note/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/speedrun-three-apps/quick-note/quick-note/ContentView.swift -------------------------------------------------------------------------------- /apple/speedrun-three-apps/quick-note/quick-note/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/speedrun-three-apps/quick-note/quick-note/Info.plist -------------------------------------------------------------------------------- /apple/speedrun-three-apps/quick-note/quick-note/Note+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/speedrun-three-apps/quick-note/quick-note/Note+Extensions.swift -------------------------------------------------------------------------------- /apple/speedrun-three-apps/quick-note/quick-note/Note+Schema.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/speedrun-three-apps/quick-note/quick-note/Note+Schema.swift -------------------------------------------------------------------------------- /apple/speedrun-three-apps/quick-note/quick-note/Note.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/speedrun-three-apps/quick-note/quick-note/Note.swift -------------------------------------------------------------------------------- /apple/speedrun-three-apps/quick-note/quick-note/quick_noteApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/speedrun-three-apps/quick-note/quick-note/quick_noteApp.swift -------------------------------------------------------------------------------- /apple/swiftui-infinite-scrolling/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/swiftui-infinite-scrolling/README.md -------------------------------------------------------------------------------- /apple/swiftui-infinite-scrolling/swiftui-infinite-scrolling/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/swiftui-infinite-scrolling/swiftui-infinite-scrolling/Info.plist -------------------------------------------------------------------------------- /apple/swiftui-life-cycle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/swiftui-life-cycle/README.md -------------------------------------------------------------------------------- /apple/swiftui-life-cycle/swiftui-life-cycle.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/swiftui-life-cycle/swiftui-life-cycle.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /apple/swiftui-life-cycle/swiftui-life-cycle/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/swiftui-life-cycle/swiftui-life-cycle/ContentView.swift -------------------------------------------------------------------------------- /apple/swiftui-life-cycle/swiftui-life-cycle/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/swiftui-life-cycle/swiftui-life-cycle/Info.plist -------------------------------------------------------------------------------- /apple/swiftui-life-cycle/swiftui-life-cycle/MyAppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/swiftui-life-cycle/swiftui-life-cycle/MyAppDelegate.swift -------------------------------------------------------------------------------- /apple/swiftui-life-cycle/swiftui-life-cycle/MySceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/swiftui-life-cycle/swiftui-life-cycle/MySceneDelegate.swift -------------------------------------------------------------------------------- /apple/swiftui-mvvm/swiftui-mvvm.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/swiftui-mvvm/swiftui-mvvm.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /apple/swiftui-mvvm/swiftui-mvvm/AppDataService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/swiftui-mvvm/swiftui-mvvm/AppDataService.swift -------------------------------------------------------------------------------- /apple/swiftui-mvvm/swiftui-mvvm/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/swiftui-mvvm/swiftui-mvvm/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /apple/swiftui-mvvm/swiftui-mvvm/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/swiftui-mvvm/swiftui-mvvm/Info.plist -------------------------------------------------------------------------------- /apple/swiftui-mvvm/swiftui-mvvm/User.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/swiftui-mvvm/swiftui-mvvm/User.swift -------------------------------------------------------------------------------- /apple/swiftui-mvvm/swiftui-mvvm/UsersView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/swiftui-mvvm/swiftui-mvvm/UsersView.swift -------------------------------------------------------------------------------- /apple/swiftui-mvvm/swiftui-mvvm/swiftui_mvvmApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/swiftui-mvvm/swiftui-mvvm/swiftui_mvvmApp.swift -------------------------------------------------------------------------------- /apple/swiftui-mvvm/swiftui-mvvmTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/swiftui-mvvm/swiftui-mvvmTests/Info.plist -------------------------------------------------------------------------------- /apple/swiftui-mvvm/swiftui-mvvmTests/swiftui_mvvmTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/swiftui-mvvm/swiftui-mvvmTests/swiftui_mvvmTests.swift -------------------------------------------------------------------------------- /apple/up-and-running-amplify-swift/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/up-and-running-amplify-swift/.gitignore -------------------------------------------------------------------------------- /apple/up-and-running-amplify-swift/amplify/.config/project-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/up-and-running-amplify-swift/amplify/.config/project-config.json -------------------------------------------------------------------------------- /apple/up-and-running-amplify-swift/amplify/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/up-and-running-amplify-swift/amplify/README.md -------------------------------------------------------------------------------- /apple/up-and-running-amplify-swift/amplify/backend/backend-config.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /apple/up-and-running-amplify-swift/amplify/backend/tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/up-and-running-amplify-swift/amplify/backend/tags.json -------------------------------------------------------------------------------- /apple/up-and-running-amplify-swift/amplify/backend/types/amplify-dependent-resources-ref.d.ts: -------------------------------------------------------------------------------- 1 | export type AmplifyDependentResourcesAttributes = {} -------------------------------------------------------------------------------- /apple/up-and-running-amplify-swift/amplify/cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/up-and-running-amplify-swift/amplify/cli.json -------------------------------------------------------------------------------- /apple/up-and-running-amplify-swift/amplify/hooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/up-and-running-amplify-swift/amplify/hooks/README.md -------------------------------------------------------------------------------- /apple/up-and-running-amplify-swift/amplify/team-provider-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/up-and-running-amplify-swift/amplify/team-provider-info.json -------------------------------------------------------------------------------- /apple/upload-to-s3-ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/upload-to-s3-ios/.gitignore -------------------------------------------------------------------------------- /apple/upload-to-s3-ios/amplify/.config/project-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/upload-to-s3-ios/amplify/.config/project-config.json -------------------------------------------------------------------------------- /apple/upload-to-s3-ios/amplify/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/upload-to-s3-ios/amplify/README.md -------------------------------------------------------------------------------- /apple/upload-to-s3-ios/amplify/backend/backend-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/upload-to-s3-ios/amplify/backend/backend-config.json -------------------------------------------------------------------------------- /apple/upload-to-s3-ios/amplify/backend/tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/upload-to-s3-ios/amplify/backend/tags.json -------------------------------------------------------------------------------- /apple/upload-to-s3-ios/amplify/cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/upload-to-s3-ios/amplify/cli.json -------------------------------------------------------------------------------- /apple/upload-to-s3-ios/amplify/hooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/upload-to-s3-ios/amplify/hooks/README.md -------------------------------------------------------------------------------- /apple/upload-to-s3-ios/amplify/team-provider-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/upload-to-s3-ios/amplify/team-provider-info.json -------------------------------------------------------------------------------- /apple/upload-to-s3-ios/upload-to-s3-ios.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/upload-to-s3-ios/upload-to-s3-ios.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /apple/upload-to-s3-ios/upload-to-s3-ios/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/upload-to-s3-ios/upload-to-s3-ios/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /apple/upload-to-s3-ios/upload-to-s3-ios/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/upload-to-s3-ios/upload-to-s3-ios/ContentView.swift -------------------------------------------------------------------------------- /apple/upload-to-s3-ios/upload-to-s3-ios/upload_to_s3_iosApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/apple/upload-to-s3-ios/upload-to-s3-ios/upload_to_s3_iosApp.swift -------------------------------------------------------------------------------- /flutter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/flutter/README.md -------------------------------------------------------------------------------- /flutter/flutter_datastore_crud/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/flutter/flutter_datastore_crud/.gitignore -------------------------------------------------------------------------------- /flutter/flutter_datastore_crud/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/flutter/flutter_datastore_crud/.metadata -------------------------------------------------------------------------------- /flutter/flutter_datastore_crud/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/flutter/flutter_datastore_crud/.vscode/settings.json -------------------------------------------------------------------------------- /flutter/flutter_datastore_crud/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/flutter/flutter_datastore_crud/README.md -------------------------------------------------------------------------------- /flutter/flutter_datastore_crud/amplify/.config/project-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/flutter/flutter_datastore_crud/amplify/.config/project-config.json -------------------------------------------------------------------------------- /flutter/flutter_datastore_crud/amplify/backend/api/flutterdatastorecrudops/schema.graphql: -------------------------------------------------------------------------------- 1 | type SexyObject @model @auth(rules: [{allow: public}]) { 2 | id: ID! 3 | value: String! 4 | } 5 | -------------------------------------------------------------------------------- /flutter/flutter_datastore_crud/amplify/backend/backend-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/flutter/flutter_datastore_crud/amplify/backend/backend-config.json -------------------------------------------------------------------------------- /flutter/flutter_datastore_crud/amplify/cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/flutter/flutter_datastore_crud/amplify/cli.json -------------------------------------------------------------------------------- /flutter/flutter_datastore_crud/amplify/team-provider-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/flutter/flutter_datastore_crud/amplify/team-provider-info.json -------------------------------------------------------------------------------- /flutter/flutter_datastore_crud/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/flutter/flutter_datastore_crud/android/.gitignore -------------------------------------------------------------------------------- /flutter/flutter_datastore_crud/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/flutter/flutter_datastore_crud/android/app/build.gradle -------------------------------------------------------------------------------- /flutter/flutter_datastore_crud/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/flutter/flutter_datastore_crud/android/build.gradle -------------------------------------------------------------------------------- /flutter/flutter_datastore_crud/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/flutter/flutter_datastore_crud/android/gradle.properties -------------------------------------------------------------------------------- /flutter/flutter_datastore_crud/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/flutter/flutter_datastore_crud/android/settings.gradle -------------------------------------------------------------------------------- /flutter/flutter_datastore_crud/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/flutter/flutter_datastore_crud/ios/.gitignore -------------------------------------------------------------------------------- /flutter/flutter_datastore_crud/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/flutter/flutter_datastore_crud/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /flutter/flutter_datastore_crud/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/flutter/flutter_datastore_crud/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /flutter/flutter_datastore_crud/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/flutter/flutter_datastore_crud/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /flutter/flutter_datastore_crud/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/flutter/flutter_datastore_crud/ios/Podfile -------------------------------------------------------------------------------- /flutter/flutter_datastore_crud/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/flutter/flutter_datastore_crud/ios/Podfile.lock -------------------------------------------------------------------------------- /flutter/flutter_datastore_crud/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/flutter/flutter_datastore_crud/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /flutter/flutter_datastore_crud/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/flutter/flutter_datastore_crud/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /flutter/flutter_datastore_crud/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/flutter/flutter_datastore_crud/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /flutter/flutter_datastore_crud/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/flutter/flutter_datastore_crud/ios/Runner/Info.plist -------------------------------------------------------------------------------- /flutter/flutter_datastore_crud/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /flutter/flutter_datastore_crud/lib/amplifyconfiguration.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/flutter/flutter_datastore_crud/lib/amplifyconfiguration.dart -------------------------------------------------------------------------------- /flutter/flutter_datastore_crud/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/flutter/flutter_datastore_crud/lib/main.dart -------------------------------------------------------------------------------- /flutter/flutter_datastore_crud/lib/models/ModelProvider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/flutter/flutter_datastore_crud/lib/models/ModelProvider.dart -------------------------------------------------------------------------------- /flutter/flutter_datastore_crud/lib/models/SexyObject.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/flutter/flutter_datastore_crud/lib/models/SexyObject.dart -------------------------------------------------------------------------------- /flutter/flutter_datastore_crud/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/flutter/flutter_datastore_crud/pubspec.yaml -------------------------------------------------------------------------------- /flutter/flutter_datastore_crud/test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/flutter/flutter_datastore_crud/test/widget_test.dart -------------------------------------------------------------------------------- /flutter/flutter_navigation/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/flutter/flutter_navigation/.gitignore -------------------------------------------------------------------------------- /flutter/flutter_navigation/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/flutter/flutter_navigation/.metadata -------------------------------------------------------------------------------- /flutter/flutter_navigation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/flutter/flutter_navigation/README.md -------------------------------------------------------------------------------- /flutter/flutter_navigation/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/flutter/flutter_navigation/android/.gitignore -------------------------------------------------------------------------------- /flutter/flutter_navigation/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/flutter/flutter_navigation/android/app/build.gradle -------------------------------------------------------------------------------- /flutter/flutter_navigation/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/flutter/flutter_navigation/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /flutter/flutter_navigation/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/flutter/flutter_navigation/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /flutter/flutter_navigation/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/flutter/flutter_navigation/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /flutter/flutter_navigation/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/flutter/flutter_navigation/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /flutter/flutter_navigation/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/flutter/flutter_navigation/android/build.gradle -------------------------------------------------------------------------------- /flutter/flutter_navigation/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/flutter/flutter_navigation/android/gradle.properties -------------------------------------------------------------------------------- /flutter/flutter_navigation/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/flutter/flutter_navigation/android/settings.gradle -------------------------------------------------------------------------------- /flutter/flutter_navigation/integration_test/app_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/flutter/flutter_navigation/integration_test/app_test.dart -------------------------------------------------------------------------------- /flutter/flutter_navigation/integration_test/driver.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/flutter/flutter_navigation/integration_test/driver.dart -------------------------------------------------------------------------------- /flutter/flutter_navigation/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/flutter/flutter_navigation/ios/.gitignore -------------------------------------------------------------------------------- /flutter/flutter_navigation/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/flutter/flutter_navigation/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /flutter/flutter_navigation/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/flutter/flutter_navigation/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /flutter/flutter_navigation/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/flutter/flutter_navigation/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /flutter/flutter_navigation/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/flutter/flutter_navigation/ios/Podfile -------------------------------------------------------------------------------- /flutter/flutter_navigation/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/flutter/flutter_navigation/ios/Podfile.lock -------------------------------------------------------------------------------- /flutter/flutter_navigation/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/flutter/flutter_navigation/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /flutter/flutter_navigation/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/flutter/flutter_navigation/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /flutter/flutter_navigation/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/flutter/flutter_navigation/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /flutter/flutter_navigation/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/flutter/flutter_navigation/ios/Runner/Info.plist -------------------------------------------------------------------------------- /flutter/flutter_navigation/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /flutter/flutter_navigation/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/flutter/flutter_navigation/lib/main.dart -------------------------------------------------------------------------------- /flutter/flutter_navigation/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/flutter/flutter_navigation/pubspec.yaml -------------------------------------------------------------------------------- /flutter/flutter_navigation/test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/flutter/flutter_navigation/test/widget_test.dart -------------------------------------------------------------------------------- /flutter/urban_dictionary/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/flutter/urban_dictionary/.gitignore -------------------------------------------------------------------------------- /flutter/urban_dictionary/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/flutter/urban_dictionary/.metadata -------------------------------------------------------------------------------- /flutter/urban_dictionary/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/flutter/urban_dictionary/README.md -------------------------------------------------------------------------------- /flutter/urban_dictionary/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/flutter/urban_dictionary/android/.gitignore -------------------------------------------------------------------------------- /flutter/urban_dictionary/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/flutter/urban_dictionary/android/app/build.gradle -------------------------------------------------------------------------------- /flutter/urban_dictionary/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/flutter/urban_dictionary/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /flutter/urban_dictionary/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/flutter/urban_dictionary/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /flutter/urban_dictionary/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/flutter/urban_dictionary/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /flutter/urban_dictionary/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/flutter/urban_dictionary/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /flutter/urban_dictionary/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/flutter/urban_dictionary/android/build.gradle -------------------------------------------------------------------------------- /flutter/urban_dictionary/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/flutter/urban_dictionary/android/gradle.properties -------------------------------------------------------------------------------- /flutter/urban_dictionary/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/flutter/urban_dictionary/android/settings.gradle -------------------------------------------------------------------------------- /flutter/urban_dictionary/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/flutter/urban_dictionary/ios/.gitignore -------------------------------------------------------------------------------- /flutter/urban_dictionary/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/flutter/urban_dictionary/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /flutter/urban_dictionary/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/flutter/urban_dictionary/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /flutter/urban_dictionary/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/flutter/urban_dictionary/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /flutter/urban_dictionary/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/flutter/urban_dictionary/ios/Podfile -------------------------------------------------------------------------------- /flutter/urban_dictionary/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/flutter/urban_dictionary/ios/Podfile.lock -------------------------------------------------------------------------------- /flutter/urban_dictionary/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/flutter/urban_dictionary/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /flutter/urban_dictionary/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/flutter/urban_dictionary/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /flutter/urban_dictionary/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/flutter/urban_dictionary/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /flutter/urban_dictionary/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/flutter/urban_dictionary/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /flutter/urban_dictionary/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/flutter/urban_dictionary/ios/Runner/Info.plist -------------------------------------------------------------------------------- /flutter/urban_dictionary/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /flutter/urban_dictionary/lib/define_term_response.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/flutter/urban_dictionary/lib/define_term_response.dart -------------------------------------------------------------------------------- /flutter/urban_dictionary/lib/enter_term_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/flutter/urban_dictionary/lib/enter_term_page.dart -------------------------------------------------------------------------------- /flutter/urban_dictionary/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/flutter/urban_dictionary/lib/main.dart -------------------------------------------------------------------------------- /flutter/urban_dictionary/lib/networking_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/flutter/urban_dictionary/lib/networking_service.dart -------------------------------------------------------------------------------- /flutter/urban_dictionary/lib/term.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/flutter/urban_dictionary/lib/term.dart -------------------------------------------------------------------------------- /flutter/urban_dictionary/lib/term_details_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/flutter/urban_dictionary/lib/term_details_page.dart -------------------------------------------------------------------------------- /flutter/urban_dictionary/lib/terms_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/flutter/urban_dictionary/lib/terms_page.dart -------------------------------------------------------------------------------- /flutter/urban_dictionary/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/flutter/urban_dictionary/pubspec.yaml -------------------------------------------------------------------------------- /flutter/urban_dictionary/test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/flutter/urban_dictionary/test/widget_test.dart -------------------------------------------------------------------------------- /templates/checklist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/templates/checklist.md -------------------------------------------------------------------------------- /web/code-passionately-website/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/web/code-passionately-website/.gitignore -------------------------------------------------------------------------------- /web/code-passionately-website/Content/index.md: -------------------------------------------------------------------------------- 1 | # Like and Subscribe 2 | -------------------------------------------------------------------------------- /web/code-passionately-website/Content/posts/first-post.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/web/code-passionately-website/Content/posts/first-post.md -------------------------------------------------------------------------------- /web/code-passionately-website/Content/posts/index.md: -------------------------------------------------------------------------------- 1 | # My posts -------------------------------------------------------------------------------- /web/code-passionately-website/Output/feed.rss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/web/code-passionately-website/Output/feed.rss -------------------------------------------------------------------------------- /web/code-passionately-website/Output/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/web/code-passionately-website/Output/index.html -------------------------------------------------------------------------------- /web/code-passionately-website/Output/posts/first-post/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/web/code-passionately-website/Output/posts/first-post/index.html -------------------------------------------------------------------------------- /web/code-passionately-website/Output/posts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/web/code-passionately-website/Output/posts/index.html -------------------------------------------------------------------------------- /web/code-passionately-website/Output/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/web/code-passionately-website/Output/sitemap.xml -------------------------------------------------------------------------------- /web/code-passionately-website/Output/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/web/code-passionately-website/Output/styles.css -------------------------------------------------------------------------------- /web/code-passionately-website/Output/tags/article/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/web/code-passionately-website/Output/tags/article/index.html -------------------------------------------------------------------------------- /web/code-passionately-website/Output/tags/first/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/web/code-passionately-website/Output/tags/first/index.html -------------------------------------------------------------------------------- /web/code-passionately-website/Output/tags/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/web/code-passionately-website/Output/tags/index.html -------------------------------------------------------------------------------- /web/code-passionately-website/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/web/code-passionately-website/Package.swift -------------------------------------------------------------------------------- /web/getting-started-swift-lambda/MyFirstLambda/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /.build 3 | /Packages 4 | /*.xcodeproj 5 | xcuserdata/ 6 | -------------------------------------------------------------------------------- /web/getting-started-swift-lambda/MyFirstLambda/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/web/getting-started-swift-lambda/MyFirstLambda/Dockerfile -------------------------------------------------------------------------------- /web/getting-started-swift-lambda/MyFirstLambda/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/web/getting-started-swift-lambda/MyFirstLambda/Package.swift -------------------------------------------------------------------------------- /web/getting-started-swift-lambda/MyFirstLambda/README.md: -------------------------------------------------------------------------------- 1 | # MyFirstLambda 2 | 3 | A description of this package. 4 | -------------------------------------------------------------------------------- /web/getting-started-swift-lambda/MyFirstLambda/Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/web/getting-started-swift-lambda/MyFirstLambda/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /web/getting-started-swift-lambda/MyFirstLambda/scripts/package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kilo-Loco/content/HEAD/web/getting-started-swift-lambda/MyFirstLambda/scripts/package.sh --------------------------------------------------------------------------------