├── .gitignore ├── ComposeMailPlayground ├── .gitignore ├── .idea │ ├── .name │ ├── codeStyles │ │ ├── Project.xml │ │ └── codeStyleConfig.xml │ ├── compiler.xml │ ├── gradle.xml │ ├── inspectionProfiles │ │ └── Project_Default.xml │ ├── jarRepositories.xml │ ├── misc.xml │ └── runConfigurations.xml ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── tech │ │ │ └── briangardner │ │ │ └── composemail │ │ │ └── ExampleInstrumentedTest.kt │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── tech │ │ │ │ └── briangardner │ │ │ │ └── composemail │ │ │ │ ├── Email.kt │ │ │ │ ├── EmailAppBar.kt │ │ │ │ ├── EmailList.kt │ │ │ │ ├── EmailListScreen.kt │ │ │ │ ├── EmailNavigation.kt │ │ │ │ ├── EmailView.kt │ │ │ │ ├── MainActivity.kt │ │ │ │ └── NewEmailButton.kt │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ ├── ic_add.xml │ │ │ ├── ic_all_inbox.xml │ │ │ ├── ic_all_mail.xml │ │ │ ├── ic_drafts.xml │ │ │ ├── ic_help.xml │ │ │ ├── ic_important.xml │ │ │ ├── ic_inbox.xml │ │ │ ├── ic_launcher_background.xml │ │ │ ├── ic_navigation.xml │ │ │ ├── ic_outbox.xml │ │ │ ├── ic_person.xml │ │ │ ├── ic_scheduled.xml │ │ │ ├── ic_sent.xml │ │ │ ├── ic_settings.xml │ │ │ ├── ic_snoozed.xml │ │ │ ├── ic_spam.xml │ │ │ ├── ic_star.xml │ │ │ ├── ic_star_border.xml │ │ │ └── ic_trash.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 │ │ │ └── styles.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── tech │ │ └── briangardner │ │ └── composemail │ │ └── ExampleUnitTest.kt ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianGardnerAtl/JetpackComposeWebinar/HEAD/.gitignore -------------------------------------------------------------------------------- /ComposeMailPlayground/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianGardnerAtl/JetpackComposeWebinar/HEAD/ComposeMailPlayground/.gitignore -------------------------------------------------------------------------------- /ComposeMailPlayground/.idea/.name: -------------------------------------------------------------------------------- 1 | ComposeMail -------------------------------------------------------------------------------- /ComposeMailPlayground/.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianGardnerAtl/JetpackComposeWebinar/HEAD/ComposeMailPlayground/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /ComposeMailPlayground/.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianGardnerAtl/JetpackComposeWebinar/HEAD/ComposeMailPlayground/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /ComposeMailPlayground/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianGardnerAtl/JetpackComposeWebinar/HEAD/ComposeMailPlayground/.idea/compiler.xml -------------------------------------------------------------------------------- /ComposeMailPlayground/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianGardnerAtl/JetpackComposeWebinar/HEAD/ComposeMailPlayground/.idea/gradle.xml -------------------------------------------------------------------------------- /ComposeMailPlayground/.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianGardnerAtl/JetpackComposeWebinar/HEAD/ComposeMailPlayground/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /ComposeMailPlayground/.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianGardnerAtl/JetpackComposeWebinar/HEAD/ComposeMailPlayground/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /ComposeMailPlayground/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianGardnerAtl/JetpackComposeWebinar/HEAD/ComposeMailPlayground/.idea/misc.xml -------------------------------------------------------------------------------- /ComposeMailPlayground/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianGardnerAtl/JetpackComposeWebinar/HEAD/ComposeMailPlayground/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /ComposeMailPlayground/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /ComposeMailPlayground/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianGardnerAtl/JetpackComposeWebinar/HEAD/ComposeMailPlayground/app/build.gradle -------------------------------------------------------------------------------- /ComposeMailPlayground/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianGardnerAtl/JetpackComposeWebinar/HEAD/ComposeMailPlayground/app/proguard-rules.pro -------------------------------------------------------------------------------- /ComposeMailPlayground/app/src/androidTest/java/tech/briangardner/composemail/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianGardnerAtl/JetpackComposeWebinar/HEAD/ComposeMailPlayground/app/src/androidTest/java/tech/briangardner/composemail/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /ComposeMailPlayground/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianGardnerAtl/JetpackComposeWebinar/HEAD/ComposeMailPlayground/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /ComposeMailPlayground/app/src/main/java/tech/briangardner/composemail/Email.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianGardnerAtl/JetpackComposeWebinar/HEAD/ComposeMailPlayground/app/src/main/java/tech/briangardner/composemail/Email.kt -------------------------------------------------------------------------------- /ComposeMailPlayground/app/src/main/java/tech/briangardner/composemail/EmailAppBar.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianGardnerAtl/JetpackComposeWebinar/HEAD/ComposeMailPlayground/app/src/main/java/tech/briangardner/composemail/EmailAppBar.kt -------------------------------------------------------------------------------- /ComposeMailPlayground/app/src/main/java/tech/briangardner/composemail/EmailList.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianGardnerAtl/JetpackComposeWebinar/HEAD/ComposeMailPlayground/app/src/main/java/tech/briangardner/composemail/EmailList.kt -------------------------------------------------------------------------------- /ComposeMailPlayground/app/src/main/java/tech/briangardner/composemail/EmailListScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianGardnerAtl/JetpackComposeWebinar/HEAD/ComposeMailPlayground/app/src/main/java/tech/briangardner/composemail/EmailListScreen.kt -------------------------------------------------------------------------------- /ComposeMailPlayground/app/src/main/java/tech/briangardner/composemail/EmailNavigation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianGardnerAtl/JetpackComposeWebinar/HEAD/ComposeMailPlayground/app/src/main/java/tech/briangardner/composemail/EmailNavigation.kt -------------------------------------------------------------------------------- /ComposeMailPlayground/app/src/main/java/tech/briangardner/composemail/EmailView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianGardnerAtl/JetpackComposeWebinar/HEAD/ComposeMailPlayground/app/src/main/java/tech/briangardner/composemail/EmailView.kt -------------------------------------------------------------------------------- /ComposeMailPlayground/app/src/main/java/tech/briangardner/composemail/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianGardnerAtl/JetpackComposeWebinar/HEAD/ComposeMailPlayground/app/src/main/java/tech/briangardner/composemail/MainActivity.kt -------------------------------------------------------------------------------- /ComposeMailPlayground/app/src/main/java/tech/briangardner/composemail/NewEmailButton.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianGardnerAtl/JetpackComposeWebinar/HEAD/ComposeMailPlayground/app/src/main/java/tech/briangardner/composemail/NewEmailButton.kt -------------------------------------------------------------------------------- /ComposeMailPlayground/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianGardnerAtl/JetpackComposeWebinar/HEAD/ComposeMailPlayground/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /ComposeMailPlayground/app/src/main/res/drawable/ic_add.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianGardnerAtl/JetpackComposeWebinar/HEAD/ComposeMailPlayground/app/src/main/res/drawable/ic_add.xml -------------------------------------------------------------------------------- /ComposeMailPlayground/app/src/main/res/drawable/ic_all_inbox.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianGardnerAtl/JetpackComposeWebinar/HEAD/ComposeMailPlayground/app/src/main/res/drawable/ic_all_inbox.xml -------------------------------------------------------------------------------- /ComposeMailPlayground/app/src/main/res/drawable/ic_all_mail.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianGardnerAtl/JetpackComposeWebinar/HEAD/ComposeMailPlayground/app/src/main/res/drawable/ic_all_mail.xml -------------------------------------------------------------------------------- /ComposeMailPlayground/app/src/main/res/drawable/ic_drafts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianGardnerAtl/JetpackComposeWebinar/HEAD/ComposeMailPlayground/app/src/main/res/drawable/ic_drafts.xml -------------------------------------------------------------------------------- /ComposeMailPlayground/app/src/main/res/drawable/ic_help.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianGardnerAtl/JetpackComposeWebinar/HEAD/ComposeMailPlayground/app/src/main/res/drawable/ic_help.xml -------------------------------------------------------------------------------- /ComposeMailPlayground/app/src/main/res/drawable/ic_important.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianGardnerAtl/JetpackComposeWebinar/HEAD/ComposeMailPlayground/app/src/main/res/drawable/ic_important.xml -------------------------------------------------------------------------------- /ComposeMailPlayground/app/src/main/res/drawable/ic_inbox.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianGardnerAtl/JetpackComposeWebinar/HEAD/ComposeMailPlayground/app/src/main/res/drawable/ic_inbox.xml -------------------------------------------------------------------------------- /ComposeMailPlayground/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianGardnerAtl/JetpackComposeWebinar/HEAD/ComposeMailPlayground/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /ComposeMailPlayground/app/src/main/res/drawable/ic_navigation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianGardnerAtl/JetpackComposeWebinar/HEAD/ComposeMailPlayground/app/src/main/res/drawable/ic_navigation.xml -------------------------------------------------------------------------------- /ComposeMailPlayground/app/src/main/res/drawable/ic_outbox.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianGardnerAtl/JetpackComposeWebinar/HEAD/ComposeMailPlayground/app/src/main/res/drawable/ic_outbox.xml -------------------------------------------------------------------------------- /ComposeMailPlayground/app/src/main/res/drawable/ic_person.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianGardnerAtl/JetpackComposeWebinar/HEAD/ComposeMailPlayground/app/src/main/res/drawable/ic_person.xml -------------------------------------------------------------------------------- /ComposeMailPlayground/app/src/main/res/drawable/ic_scheduled.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianGardnerAtl/JetpackComposeWebinar/HEAD/ComposeMailPlayground/app/src/main/res/drawable/ic_scheduled.xml -------------------------------------------------------------------------------- /ComposeMailPlayground/app/src/main/res/drawable/ic_sent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianGardnerAtl/JetpackComposeWebinar/HEAD/ComposeMailPlayground/app/src/main/res/drawable/ic_sent.xml -------------------------------------------------------------------------------- /ComposeMailPlayground/app/src/main/res/drawable/ic_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianGardnerAtl/JetpackComposeWebinar/HEAD/ComposeMailPlayground/app/src/main/res/drawable/ic_settings.xml -------------------------------------------------------------------------------- /ComposeMailPlayground/app/src/main/res/drawable/ic_snoozed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianGardnerAtl/JetpackComposeWebinar/HEAD/ComposeMailPlayground/app/src/main/res/drawable/ic_snoozed.xml -------------------------------------------------------------------------------- /ComposeMailPlayground/app/src/main/res/drawable/ic_spam.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianGardnerAtl/JetpackComposeWebinar/HEAD/ComposeMailPlayground/app/src/main/res/drawable/ic_spam.xml -------------------------------------------------------------------------------- /ComposeMailPlayground/app/src/main/res/drawable/ic_star.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianGardnerAtl/JetpackComposeWebinar/HEAD/ComposeMailPlayground/app/src/main/res/drawable/ic_star.xml -------------------------------------------------------------------------------- /ComposeMailPlayground/app/src/main/res/drawable/ic_star_border.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianGardnerAtl/JetpackComposeWebinar/HEAD/ComposeMailPlayground/app/src/main/res/drawable/ic_star_border.xml -------------------------------------------------------------------------------- /ComposeMailPlayground/app/src/main/res/drawable/ic_trash.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianGardnerAtl/JetpackComposeWebinar/HEAD/ComposeMailPlayground/app/src/main/res/drawable/ic_trash.xml -------------------------------------------------------------------------------- /ComposeMailPlayground/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianGardnerAtl/JetpackComposeWebinar/HEAD/ComposeMailPlayground/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /ComposeMailPlayground/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianGardnerAtl/JetpackComposeWebinar/HEAD/ComposeMailPlayground/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /ComposeMailPlayground/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianGardnerAtl/JetpackComposeWebinar/HEAD/ComposeMailPlayground/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /ComposeMailPlayground/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianGardnerAtl/JetpackComposeWebinar/HEAD/ComposeMailPlayground/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /ComposeMailPlayground/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianGardnerAtl/JetpackComposeWebinar/HEAD/ComposeMailPlayground/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /ComposeMailPlayground/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianGardnerAtl/JetpackComposeWebinar/HEAD/ComposeMailPlayground/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /ComposeMailPlayground/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianGardnerAtl/JetpackComposeWebinar/HEAD/ComposeMailPlayground/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /ComposeMailPlayground/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianGardnerAtl/JetpackComposeWebinar/HEAD/ComposeMailPlayground/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /ComposeMailPlayground/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianGardnerAtl/JetpackComposeWebinar/HEAD/ComposeMailPlayground/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /ComposeMailPlayground/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianGardnerAtl/JetpackComposeWebinar/HEAD/ComposeMailPlayground/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /ComposeMailPlayground/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianGardnerAtl/JetpackComposeWebinar/HEAD/ComposeMailPlayground/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /ComposeMailPlayground/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianGardnerAtl/JetpackComposeWebinar/HEAD/ComposeMailPlayground/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /ComposeMailPlayground/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianGardnerAtl/JetpackComposeWebinar/HEAD/ComposeMailPlayground/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /ComposeMailPlayground/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianGardnerAtl/JetpackComposeWebinar/HEAD/ComposeMailPlayground/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /ComposeMailPlayground/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianGardnerAtl/JetpackComposeWebinar/HEAD/ComposeMailPlayground/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /ComposeMailPlayground/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianGardnerAtl/JetpackComposeWebinar/HEAD/ComposeMailPlayground/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /ComposeMailPlayground/app/src/test/java/tech/briangardner/composemail/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianGardnerAtl/JetpackComposeWebinar/HEAD/ComposeMailPlayground/app/src/test/java/tech/briangardner/composemail/ExampleUnitTest.kt -------------------------------------------------------------------------------- /ComposeMailPlayground/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianGardnerAtl/JetpackComposeWebinar/HEAD/ComposeMailPlayground/build.gradle -------------------------------------------------------------------------------- /ComposeMailPlayground/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianGardnerAtl/JetpackComposeWebinar/HEAD/ComposeMailPlayground/gradle.properties -------------------------------------------------------------------------------- /ComposeMailPlayground/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianGardnerAtl/JetpackComposeWebinar/HEAD/ComposeMailPlayground/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /ComposeMailPlayground/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianGardnerAtl/JetpackComposeWebinar/HEAD/ComposeMailPlayground/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /ComposeMailPlayground/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianGardnerAtl/JetpackComposeWebinar/HEAD/ComposeMailPlayground/gradlew -------------------------------------------------------------------------------- /ComposeMailPlayground/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianGardnerAtl/JetpackComposeWebinar/HEAD/ComposeMailPlayground/gradlew.bat -------------------------------------------------------------------------------- /ComposeMailPlayground/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name = "ComposeMail" -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianGardnerAtl/JetpackComposeWebinar/HEAD/README.md --------------------------------------------------------------------------------