├── ComposeTutorial01Introduction ├── app │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── codingambitions │ │ │ └── composetutorial1 │ │ │ └── ExampleInstrumentedTest.kt │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── codingambitions │ │ │ │ └── composetutorial1 │ │ │ │ ├── MainActivity.kt │ │ │ │ └── ui │ │ │ │ └── theme │ │ │ │ ├── Color.kt │ │ │ │ ├── Theme.kt │ │ │ │ └── Type.kt │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ ├── compose.xml │ │ │ └── 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 │ │ └── codingambitions │ │ └── composetutorial1 │ │ └── ExampleUnitTest.kt ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── local.properties └── settings.gradle ├── ComposeTutorial02CreateYourFirstApp ├── Screenshot_20230618_120455.png ├── app │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── codingambitions │ │ │ └── composetutorial2createyourfirstapp │ │ │ └── ExampleInstrumentedTest.kt │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── codingambitions │ │ │ │ └── composetutorial2createyourfirstapp │ │ │ │ ├── MainActivity.kt │ │ │ │ └── ui │ │ │ │ └── theme │ │ │ │ ├── Color.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 │ │ └── codingambitions │ │ └── composetutorial2createyourfirstapp │ │ └── ExampleUnitTest.kt ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── local.properties └── settings.gradle ├── ComposeTutorial03BasicsOfLayout ├── Screenshot_20230529_104753.png ├── app │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── codingambitions │ │ │ └── composetutorial2 │ │ │ └── ExampleInstrumentedTest.kt │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── codingambitions │ │ │ │ └── composetutorial2 │ │ │ │ ├── MainActivity.kt │ │ │ │ └── ui │ │ │ │ └── theme │ │ │ │ ├── Color.kt │ │ │ │ ├── Theme.kt │ │ │ │ └── Type.kt │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ ├── compose.xml │ │ │ └── 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 │ │ └── codingambitions │ │ └── composetutorial2 │ │ └── ExampleUnitTest.kt ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── local.properties └── settings.gradle ├── ComposeTutorial04LazyLists ├── Screenshot_20230604_002211.png ├── app │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── codingambitions │ │ │ └── composelazylists │ │ │ └── ExampleInstrumentedTest.kt │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── codingambitions │ │ │ │ └── composelazylists │ │ │ │ ├── MainActivity.kt │ │ │ │ └── ui │ │ │ │ └── theme │ │ │ │ ├── Color.kt │ │ │ │ ├── Theme.kt │ │ │ │ └── Type.kt │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ ├── dummy_user.png │ │ │ └── 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 │ │ └── codingambitions │ │ └── composelazylists │ │ └── ExampleUnitTest.kt ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── local.properties └── settings.gradle ├── ComposeTutorial05LazyGrids ├── Screenshot_20230611_100742.png ├── app │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── codingambitions │ │ │ └── compsoetutorial5lazygrids │ │ │ └── ExampleInstrumentedTest.kt │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── codingambitions │ │ │ │ └── compsoetutorial5lazygrids │ │ │ │ ├── MainActivity.kt │ │ │ │ ├── TestData.kt │ │ │ │ └── ui │ │ │ │ └── theme │ │ │ │ ├── Color.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 │ │ └── codingambitions │ │ └── compsoetutorial5lazygrids │ │ └── ExampleUnitTest.kt ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── local.properties └── settings.gradle ├── ComposeTutorial06LazyStaggeredGrids ├── Screenshot_20230616_235305.png ├── app │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── codingambitions │ │ │ └── compopsetutorial6lazystaggeredgrids │ │ │ └── ExampleInstrumentedTest.kt │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── codingambitions │ │ │ │ └── compopsetutorial6lazystaggeredgrids │ │ │ │ ├── MainActivity.kt │ │ │ │ ├── TestData.kt │ │ │ │ └── ui │ │ │ │ └── theme │ │ │ │ ├── Color.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 │ │ └── codingambitions │ │ └── compopsetutorial6lazystaggeredgrids │ │ └── ExampleUnitTest.kt ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── local.properties └── settings.gradle ├── ComposeTutorial07NavigationBasics ├── Screenshot_20230814_101108.png ├── Screenshot_20230814_101119.png ├── app │ ├── build.gradle.kts │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── codingambitions │ │ │ └── jetpackcomposetutorial7 │ │ │ └── ExampleInstrumentedTest.kt │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── codingambitions │ │ │ │ └── jetpackcomposetutorial7 │ │ │ │ ├── MainActivity.kt │ │ │ │ └── ui │ │ │ │ └── theme │ │ │ │ ├── Color.kt │ │ │ │ ├── Theme.kt │ │ │ │ └── Type.kt │ │ └── res │ │ │ ├── drawable │ │ │ ├── ic_launcher_background.xml │ │ │ └── ic_launcher_foreground.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 │ │ └── codingambitions │ │ └── jetpackcomposetutorial7 │ │ └── ExampleUnitTest.kt ├── build.gradle.kts ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── local.properties └── settings.gradle.kts ├── ComposeTutorial08NestedNavigation ├── Screenshot_20230814_101108.png ├── Screenshot_20230814_101119.png ├── app │ ├── build.gradle.kts │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── codingambitions │ │ │ └── jetpackcomposetutorial7 │ │ │ └── ExampleInstrumentedTest.kt │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── codingambitions │ │ │ │ └── jetpackcomposetutorial7 │ │ │ │ ├── MainActivity.kt │ │ │ │ └── ui │ │ │ │ └── theme │ │ │ │ ├── Color.kt │ │ │ │ ├── Theme.kt │ │ │ │ └── Type.kt │ │ └── res │ │ │ ├── drawable │ │ │ ├── ic_launcher_background.xml │ │ │ └── ic_launcher_foreground.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 │ │ └── codingambitions │ │ └── jetpackcomposetutorial7 │ │ └── ExampleUnitTest.kt ├── build.gradle.kts ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── local.properties └── settings.gradle.kts ├── ComposeTutorial09NestedNavigationWithBottomBar ├── Screenshot_20230902_110216.png ├── Screenshot_20230902_111243.png ├── app │ ├── build.gradle.kts │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── codingambitions │ │ │ └── jetpackcomposetutorial7 │ │ │ └── ExampleInstrumentedTest.kt │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── codingambitions │ │ │ │ └── jetpackcomposetutorial7 │ │ │ │ ├── MainActivity.kt │ │ │ │ └── ui │ │ │ │ └── theme │ │ │ │ ├── Color.kt │ │ │ │ ├── Theme.kt │ │ │ │ └── Type.kt │ │ └── res │ │ │ ├── drawable │ │ │ ├── ic_launcher_background.xml │ │ │ └── ic_launcher_foreground.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 │ │ └── codingambitions │ │ └── jetpackcomposetutorial7 │ │ └── ExampleUnitTest.kt ├── build.gradle.kts ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── local.properties └── settings.gradle.kts ├── ComposeTutorial10SideEffects ├── app │ ├── build.gradle.kts │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── codingambitions │ │ │ └── jetpackcomposetutorial10 │ │ │ └── ExampleInstrumentedTest.kt │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── codingambitions │ │ │ │ └── jetpackcomposetutorial10 │ │ │ │ ├── MainActivity.kt │ │ │ │ └── ui │ │ │ │ └── theme │ │ │ │ ├── Color.kt │ │ │ │ ├── Theme.kt │ │ │ │ └── Type.kt │ │ └── res │ │ │ ├── drawable │ │ │ ├── ic_launcher_background.xml │ │ │ └── ic_launcher_foreground.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 │ │ └── codingambitions │ │ └── jetpackcomposetutorial10 │ │ └── ExampleUnitTest.kt ├── build.gradle.kts ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── local.properties └── settings.gradle.kts ├── ComposeTutorial11CompositionLocal ├── app │ ├── build.gradle.kts │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── codingambitions │ │ │ └── composetutorial11compositionlocal │ │ │ └── ExampleInstrumentedTest.kt │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── codingambitions │ │ │ │ └── composetutorial11compositionlocal │ │ │ │ ├── MainActivity.kt │ │ │ │ └── ui │ │ │ │ └── theme │ │ │ │ ├── Color.kt │ │ │ │ ├── Theme.kt │ │ │ │ └── Type.kt │ │ └── res │ │ │ ├── drawable │ │ │ ├── ic_launcher_background.xml │ │ │ └── ic_launcher_foreground.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 │ │ └── codingambitions │ │ └── composetutorial11compositionlocal │ │ └── ExampleUnitTest.kt ├── build.gradle.kts ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── local.properties └── settings.gradle.kts ├── ComposeTutorial12DifferentScreenSizesSupport ├── Screenshot_20230924_161547_desktop.png ├── Screenshot_mobile.png ├── Screenshot_tablet.png ├── app │ ├── build.gradle.kts │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── codingambitions │ │ │ └── composetutorial12differentscreensizessupport │ │ │ └── ExampleInstrumentedTest.kt │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── codingambitions │ │ │ │ └── composetutorial12differentscreensizessupport │ │ │ │ ├── HomeScreen.kt │ │ │ │ ├── HomeViewModel.kt │ │ │ │ ├── MainActivity.kt │ │ │ │ ├── NavigationActions.kt │ │ │ │ ├── ProfileScreen.kt │ │ │ │ ├── UserDetail.kt │ │ │ │ └── ui │ │ │ │ └── theme │ │ │ │ ├── Color.kt │ │ │ │ ├── Theme.kt │ │ │ │ └── Type.kt │ │ └── res │ │ │ ├── drawable │ │ │ ├── dummy_user.png │ │ │ ├── ic_launcher_background.xml │ │ │ └── ic_launcher_foreground.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 │ │ └── codingambitions │ │ └── composetutorial12differentscreensizessupport │ │ └── ExampleUnitTest.kt ├── build.gradle.kts ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── local.properties └── settings.gradle.kts ├── ComposeTutorial13IntegrateGoogleMaps ├── Screenshot_20231001_180004.png ├── app │ ├── build.gradle.kts │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── codingambitions │ │ │ └── composetutorialintegrategooglemaps │ │ │ └── ExampleInstrumentedTest.kt │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── codingambitions │ │ │ │ └── composetutorialintegrategooglemaps │ │ │ │ ├── MainActivity.kt │ │ │ │ └── ui │ │ │ │ └── theme │ │ │ │ ├── Color.kt │ │ │ │ ├── Theme.kt │ │ │ │ └── Type.kt │ │ └── res │ │ │ ├── drawable │ │ │ ├── ic_launcher_background.xml │ │ │ └── ic_launcher_foreground.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 │ │ └── codingambitions │ │ └── composetutorialintegrategooglemaps │ │ └── ExampleUnitTest.kt ├── build.gradle.kts ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── local.properties └── settings.gradle.kts ├── ComposeTutorial14TextAndUserInput ├── Screenshot_20231015_113002.png ├── Screenshot_20231015_113347.png ├── Screenshot_20231015_114320.png ├── app │ ├── build.gradle.kts │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── codingambitions │ │ │ └── composetutorial14textanduserinput │ │ │ └── ExampleInstrumentedTest.kt │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── codingambitions │ │ │ │ └── composetutorial14textanduserinput │ │ │ │ ├── MainActivity.kt │ │ │ │ └── ui │ │ │ │ └── theme │ │ │ │ ├── Color.kt │ │ │ │ ├── Theme.kt │ │ │ │ └── Type.kt │ │ └── res │ │ │ ├── drawable │ │ │ ├── ic_launcher_background.xml │ │ │ └── ic_launcher_foreground.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 │ │ └── codingambitions │ │ └── composetutorial14textanduserinput │ │ └── ExampleUnitTest.kt ├── build.gradle.kts ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── local.properties └── settings.gradle.kts ├── ComposeTutorial15Gestures ├── app │ ├── build.gradle.kts │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── codingambitions │ │ │ └── composetutorial15gestures │ │ │ └── ExampleInstrumentedTest.kt │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── codingambitions │ │ │ │ └── composetutorial15gestures │ │ │ │ ├── MainActivity.kt │ │ │ │ ├── TestData.kt │ │ │ │ └── ui │ │ │ │ └── theme │ │ │ │ ├── Color.kt │ │ │ │ ├── Theme.kt │ │ │ │ └── Type.kt │ │ └── res │ │ │ ├── drawable │ │ │ ├── ic_launcher_background.xml │ │ │ └── ic_launcher_foreground.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 │ │ └── codingambitions │ │ └── composetutorial15gestures │ │ └── ExampleUnitTest.kt ├── build.gradle.kts ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── local.properties └── settings.gradle.kts ├── ComposeTutorial16GesturesPart2 ├── app │ ├── build.gradle.kts │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── codingambitions │ │ │ └── composetutorial16gesturespart2 │ │ │ └── ExampleInstrumentedTest.kt │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── codingambitions │ │ │ │ └── composetutorial16gesturespart2 │ │ │ │ ├── MainActivity.kt │ │ │ │ ├── TestData.kt │ │ │ │ └── ui │ │ │ │ └── theme │ │ │ │ ├── Color.kt │ │ │ │ ├── Theme.kt │ │ │ │ └── Type.kt │ │ └── res │ │ │ ├── drawable │ │ │ ├── ic_launcher_background.xml │ │ │ └── ic_launcher_foreground.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 │ │ └── codingambitions │ │ └── composetutorial16gesturespart2 │ │ └── ExampleUnitTest.kt ├── build.gradle.kts ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── local.properties └── settings.gradle.kts ├── ComposeTutorial17Animations ├── app │ ├── build.gradle.kts │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── codingambitions │ │ │ └── composetutorial17animations │ │ │ └── ExampleInstrumentedTest.kt │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── codingambitions │ │ │ │ └── composetutorial17animations │ │ │ │ ├── MainActivity.kt │ │ │ │ ├── TestData.kt │ │ │ │ └── ui │ │ │ │ └── theme │ │ │ │ ├── Color.kt │ │ │ │ ├── Theme.kt │ │ │ │ └── Type.kt │ │ └── res │ │ │ ├── drawable │ │ │ ├── ic_launcher_background.xml │ │ │ └── ic_launcher_foreground.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 │ │ └── codingambitions │ │ └── composetutorial17animations │ │ └── ExampleUnitTest.kt ├── build.gradle.kts ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── local.properties └── settings.gradle.kts └── README.md /ComposeTutorial01Introduction/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial01Introduction/app/build.gradle -------------------------------------------------------------------------------- /ComposeTutorial01Introduction/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial01Introduction/app/proguard-rules.pro -------------------------------------------------------------------------------- /ComposeTutorial01Introduction/app/src/androidTest/java/com/codingambitions/composetutorial1/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial01Introduction/app/src/androidTest/java/com/codingambitions/composetutorial1/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /ComposeTutorial01Introduction/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial01Introduction/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /ComposeTutorial01Introduction/app/src/main/java/com/codingambitions/composetutorial1/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial01Introduction/app/src/main/java/com/codingambitions/composetutorial1/MainActivity.kt -------------------------------------------------------------------------------- /ComposeTutorial01Introduction/app/src/main/java/com/codingambitions/composetutorial1/ui/theme/Color.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial01Introduction/app/src/main/java/com/codingambitions/composetutorial1/ui/theme/Color.kt -------------------------------------------------------------------------------- /ComposeTutorial01Introduction/app/src/main/java/com/codingambitions/composetutorial1/ui/theme/Theme.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial01Introduction/app/src/main/java/com/codingambitions/composetutorial1/ui/theme/Theme.kt -------------------------------------------------------------------------------- /ComposeTutorial01Introduction/app/src/main/java/com/codingambitions/composetutorial1/ui/theme/Type.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial01Introduction/app/src/main/java/com/codingambitions/composetutorial1/ui/theme/Type.kt -------------------------------------------------------------------------------- /ComposeTutorial01Introduction/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial01Introduction/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /ComposeTutorial01Introduction/app/src/main/res/drawable/compose.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial01Introduction/app/src/main/res/drawable/compose.xml -------------------------------------------------------------------------------- /ComposeTutorial01Introduction/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial01Introduction/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /ComposeTutorial01Introduction/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial01Introduction/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /ComposeTutorial01Introduction/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial01Introduction/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /ComposeTutorial01Introduction/app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial01Introduction/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /ComposeTutorial01Introduction/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial01Introduction/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /ComposeTutorial01Introduction/app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial01Introduction/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /ComposeTutorial01Introduction/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial01Introduction/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /ComposeTutorial01Introduction/app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial01Introduction/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /ComposeTutorial01Introduction/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial01Introduction/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /ComposeTutorial01Introduction/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial01Introduction/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /ComposeTutorial01Introduction/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial01Introduction/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /ComposeTutorial01Introduction/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial01Introduction/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /ComposeTutorial01Introduction/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial01Introduction/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /ComposeTutorial01Introduction/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial01Introduction/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /ComposeTutorial01Introduction/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial01Introduction/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /ComposeTutorial01Introduction/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial01Introduction/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /ComposeTutorial01Introduction/app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial01Introduction/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /ComposeTutorial01Introduction/app/src/main/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial01Introduction/app/src/main/res/xml/data_extraction_rules.xml -------------------------------------------------------------------------------- /ComposeTutorial01Introduction/app/src/test/java/com/codingambitions/composetutorial1/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial01Introduction/app/src/test/java/com/codingambitions/composetutorial1/ExampleUnitTest.kt -------------------------------------------------------------------------------- /ComposeTutorial01Introduction/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial01Introduction/build.gradle -------------------------------------------------------------------------------- /ComposeTutorial01Introduction/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial01Introduction/gradle.properties -------------------------------------------------------------------------------- /ComposeTutorial01Introduction/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial01Introduction/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /ComposeTutorial01Introduction/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial01Introduction/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /ComposeTutorial01Introduction/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial01Introduction/gradlew -------------------------------------------------------------------------------- /ComposeTutorial01Introduction/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial01Introduction/gradlew.bat -------------------------------------------------------------------------------- /ComposeTutorial01Introduction/local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial01Introduction/local.properties -------------------------------------------------------------------------------- /ComposeTutorial01Introduction/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial01Introduction/settings.gradle -------------------------------------------------------------------------------- /ComposeTutorial02CreateYourFirstApp/Screenshot_20230618_120455.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial02CreateYourFirstApp/Screenshot_20230618_120455.png -------------------------------------------------------------------------------- /ComposeTutorial02CreateYourFirstApp/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial02CreateYourFirstApp/app/build.gradle -------------------------------------------------------------------------------- /ComposeTutorial02CreateYourFirstApp/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial02CreateYourFirstApp/app/proguard-rules.pro -------------------------------------------------------------------------------- /ComposeTutorial02CreateYourFirstApp/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial02CreateYourFirstApp/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /ComposeTutorial02CreateYourFirstApp/app/src/main/java/com/codingambitions/composetutorial2createyourfirstapp/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial02CreateYourFirstApp/app/src/main/java/com/codingambitions/composetutorial2createyourfirstapp/MainActivity.kt -------------------------------------------------------------------------------- /ComposeTutorial02CreateYourFirstApp/app/src/main/java/com/codingambitions/composetutorial2createyourfirstapp/ui/theme/Color.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial02CreateYourFirstApp/app/src/main/java/com/codingambitions/composetutorial2createyourfirstapp/ui/theme/Color.kt -------------------------------------------------------------------------------- /ComposeTutorial02CreateYourFirstApp/app/src/main/java/com/codingambitions/composetutorial2createyourfirstapp/ui/theme/Theme.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial02CreateYourFirstApp/app/src/main/java/com/codingambitions/composetutorial2createyourfirstapp/ui/theme/Theme.kt -------------------------------------------------------------------------------- /ComposeTutorial02CreateYourFirstApp/app/src/main/java/com/codingambitions/composetutorial2createyourfirstapp/ui/theme/Type.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial02CreateYourFirstApp/app/src/main/java/com/codingambitions/composetutorial2createyourfirstapp/ui/theme/Type.kt -------------------------------------------------------------------------------- /ComposeTutorial02CreateYourFirstApp/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial02CreateYourFirstApp/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /ComposeTutorial02CreateYourFirstApp/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial02CreateYourFirstApp/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /ComposeTutorial02CreateYourFirstApp/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial02CreateYourFirstApp/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /ComposeTutorial02CreateYourFirstApp/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial02CreateYourFirstApp/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /ComposeTutorial02CreateYourFirstApp/app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial02CreateYourFirstApp/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /ComposeTutorial02CreateYourFirstApp/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial02CreateYourFirstApp/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /ComposeTutorial02CreateYourFirstApp/app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial02CreateYourFirstApp/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /ComposeTutorial02CreateYourFirstApp/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial02CreateYourFirstApp/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /ComposeTutorial02CreateYourFirstApp/app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial02CreateYourFirstApp/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /ComposeTutorial02CreateYourFirstApp/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial02CreateYourFirstApp/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /ComposeTutorial02CreateYourFirstApp/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial02CreateYourFirstApp/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /ComposeTutorial02CreateYourFirstApp/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial02CreateYourFirstApp/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /ComposeTutorial02CreateYourFirstApp/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial02CreateYourFirstApp/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /ComposeTutorial02CreateYourFirstApp/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial02CreateYourFirstApp/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /ComposeTutorial02CreateYourFirstApp/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial02CreateYourFirstApp/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /ComposeTutorial02CreateYourFirstApp/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial02CreateYourFirstApp/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /ComposeTutorial02CreateYourFirstApp/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial02CreateYourFirstApp/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /ComposeTutorial02CreateYourFirstApp/app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial02CreateYourFirstApp/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /ComposeTutorial02CreateYourFirstApp/app/src/main/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial02CreateYourFirstApp/app/src/main/res/xml/data_extraction_rules.xml -------------------------------------------------------------------------------- /ComposeTutorial02CreateYourFirstApp/app/src/test/java/com/codingambitions/composetutorial2createyourfirstapp/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial02CreateYourFirstApp/app/src/test/java/com/codingambitions/composetutorial2createyourfirstapp/ExampleUnitTest.kt -------------------------------------------------------------------------------- /ComposeTutorial02CreateYourFirstApp/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial02CreateYourFirstApp/build.gradle -------------------------------------------------------------------------------- /ComposeTutorial02CreateYourFirstApp/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial02CreateYourFirstApp/gradle.properties -------------------------------------------------------------------------------- /ComposeTutorial02CreateYourFirstApp/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial02CreateYourFirstApp/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /ComposeTutorial02CreateYourFirstApp/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial02CreateYourFirstApp/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /ComposeTutorial02CreateYourFirstApp/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial02CreateYourFirstApp/gradlew -------------------------------------------------------------------------------- /ComposeTutorial02CreateYourFirstApp/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial02CreateYourFirstApp/gradlew.bat -------------------------------------------------------------------------------- /ComposeTutorial02CreateYourFirstApp/local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial02CreateYourFirstApp/local.properties -------------------------------------------------------------------------------- /ComposeTutorial02CreateYourFirstApp/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial02CreateYourFirstApp/settings.gradle -------------------------------------------------------------------------------- /ComposeTutorial03BasicsOfLayout/Screenshot_20230529_104753.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial03BasicsOfLayout/Screenshot_20230529_104753.png -------------------------------------------------------------------------------- /ComposeTutorial03BasicsOfLayout/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial03BasicsOfLayout/app/build.gradle -------------------------------------------------------------------------------- /ComposeTutorial03BasicsOfLayout/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial03BasicsOfLayout/app/proguard-rules.pro -------------------------------------------------------------------------------- /ComposeTutorial03BasicsOfLayout/app/src/androidTest/java/com/codingambitions/composetutorial2/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial03BasicsOfLayout/app/src/androidTest/java/com/codingambitions/composetutorial2/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /ComposeTutorial03BasicsOfLayout/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial03BasicsOfLayout/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /ComposeTutorial03BasicsOfLayout/app/src/main/java/com/codingambitions/composetutorial2/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial03BasicsOfLayout/app/src/main/java/com/codingambitions/composetutorial2/MainActivity.kt -------------------------------------------------------------------------------- /ComposeTutorial03BasicsOfLayout/app/src/main/java/com/codingambitions/composetutorial2/ui/theme/Color.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial03BasicsOfLayout/app/src/main/java/com/codingambitions/composetutorial2/ui/theme/Color.kt -------------------------------------------------------------------------------- /ComposeTutorial03BasicsOfLayout/app/src/main/java/com/codingambitions/composetutorial2/ui/theme/Theme.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial03BasicsOfLayout/app/src/main/java/com/codingambitions/composetutorial2/ui/theme/Theme.kt -------------------------------------------------------------------------------- /ComposeTutorial03BasicsOfLayout/app/src/main/java/com/codingambitions/composetutorial2/ui/theme/Type.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial03BasicsOfLayout/app/src/main/java/com/codingambitions/composetutorial2/ui/theme/Type.kt -------------------------------------------------------------------------------- /ComposeTutorial03BasicsOfLayout/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial03BasicsOfLayout/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /ComposeTutorial03BasicsOfLayout/app/src/main/res/drawable/compose.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial03BasicsOfLayout/app/src/main/res/drawable/compose.xml -------------------------------------------------------------------------------- /ComposeTutorial03BasicsOfLayout/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial03BasicsOfLayout/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /ComposeTutorial03BasicsOfLayout/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial03BasicsOfLayout/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /ComposeTutorial03BasicsOfLayout/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial03BasicsOfLayout/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /ComposeTutorial03BasicsOfLayout/app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial03BasicsOfLayout/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /ComposeTutorial03BasicsOfLayout/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial03BasicsOfLayout/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /ComposeTutorial03BasicsOfLayout/app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial03BasicsOfLayout/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /ComposeTutorial03BasicsOfLayout/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial03BasicsOfLayout/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /ComposeTutorial03BasicsOfLayout/app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial03BasicsOfLayout/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /ComposeTutorial03BasicsOfLayout/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial03BasicsOfLayout/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /ComposeTutorial03BasicsOfLayout/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial03BasicsOfLayout/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /ComposeTutorial03BasicsOfLayout/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial03BasicsOfLayout/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /ComposeTutorial03BasicsOfLayout/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial03BasicsOfLayout/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /ComposeTutorial03BasicsOfLayout/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial03BasicsOfLayout/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /ComposeTutorial03BasicsOfLayout/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial03BasicsOfLayout/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /ComposeTutorial03BasicsOfLayout/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial03BasicsOfLayout/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /ComposeTutorial03BasicsOfLayout/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial03BasicsOfLayout/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /ComposeTutorial03BasicsOfLayout/app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial03BasicsOfLayout/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /ComposeTutorial03BasicsOfLayout/app/src/main/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial03BasicsOfLayout/app/src/main/res/xml/data_extraction_rules.xml -------------------------------------------------------------------------------- /ComposeTutorial03BasicsOfLayout/app/src/test/java/com/codingambitions/composetutorial2/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial03BasicsOfLayout/app/src/test/java/com/codingambitions/composetutorial2/ExampleUnitTest.kt -------------------------------------------------------------------------------- /ComposeTutorial03BasicsOfLayout/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial03BasicsOfLayout/build.gradle -------------------------------------------------------------------------------- /ComposeTutorial03BasicsOfLayout/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial03BasicsOfLayout/gradle.properties -------------------------------------------------------------------------------- /ComposeTutorial03BasicsOfLayout/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial03BasicsOfLayout/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /ComposeTutorial03BasicsOfLayout/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial03BasicsOfLayout/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /ComposeTutorial03BasicsOfLayout/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial03BasicsOfLayout/gradlew -------------------------------------------------------------------------------- /ComposeTutorial03BasicsOfLayout/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial03BasicsOfLayout/gradlew.bat -------------------------------------------------------------------------------- /ComposeTutorial03BasicsOfLayout/local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial03BasicsOfLayout/local.properties -------------------------------------------------------------------------------- /ComposeTutorial03BasicsOfLayout/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial03BasicsOfLayout/settings.gradle -------------------------------------------------------------------------------- /ComposeTutorial04LazyLists/Screenshot_20230604_002211.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial04LazyLists/Screenshot_20230604_002211.png -------------------------------------------------------------------------------- /ComposeTutorial04LazyLists/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial04LazyLists/app/build.gradle -------------------------------------------------------------------------------- /ComposeTutorial04LazyLists/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial04LazyLists/app/proguard-rules.pro -------------------------------------------------------------------------------- /ComposeTutorial04LazyLists/app/src/androidTest/java/com/codingambitions/composelazylists/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial04LazyLists/app/src/androidTest/java/com/codingambitions/composelazylists/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /ComposeTutorial04LazyLists/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial04LazyLists/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /ComposeTutorial04LazyLists/app/src/main/java/com/codingambitions/composelazylists/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial04LazyLists/app/src/main/java/com/codingambitions/composelazylists/MainActivity.kt -------------------------------------------------------------------------------- /ComposeTutorial04LazyLists/app/src/main/java/com/codingambitions/composelazylists/ui/theme/Color.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial04LazyLists/app/src/main/java/com/codingambitions/composelazylists/ui/theme/Color.kt -------------------------------------------------------------------------------- /ComposeTutorial04LazyLists/app/src/main/java/com/codingambitions/composelazylists/ui/theme/Theme.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial04LazyLists/app/src/main/java/com/codingambitions/composelazylists/ui/theme/Theme.kt -------------------------------------------------------------------------------- /ComposeTutorial04LazyLists/app/src/main/java/com/codingambitions/composelazylists/ui/theme/Type.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial04LazyLists/app/src/main/java/com/codingambitions/composelazylists/ui/theme/Type.kt -------------------------------------------------------------------------------- /ComposeTutorial04LazyLists/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial04LazyLists/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /ComposeTutorial04LazyLists/app/src/main/res/drawable/dummy_user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial04LazyLists/app/src/main/res/drawable/dummy_user.png -------------------------------------------------------------------------------- /ComposeTutorial04LazyLists/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial04LazyLists/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /ComposeTutorial04LazyLists/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial04LazyLists/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /ComposeTutorial04LazyLists/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial04LazyLists/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /ComposeTutorial04LazyLists/app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial04LazyLists/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /ComposeTutorial04LazyLists/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial04LazyLists/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /ComposeTutorial04LazyLists/app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial04LazyLists/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /ComposeTutorial04LazyLists/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial04LazyLists/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /ComposeTutorial04LazyLists/app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial04LazyLists/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /ComposeTutorial04LazyLists/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial04LazyLists/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /ComposeTutorial04LazyLists/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial04LazyLists/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /ComposeTutorial04LazyLists/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial04LazyLists/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /ComposeTutorial04LazyLists/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial04LazyLists/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /ComposeTutorial04LazyLists/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial04LazyLists/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /ComposeTutorial04LazyLists/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial04LazyLists/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /ComposeTutorial04LazyLists/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial04LazyLists/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /ComposeTutorial04LazyLists/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial04LazyLists/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /ComposeTutorial04LazyLists/app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial04LazyLists/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /ComposeTutorial04LazyLists/app/src/main/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial04LazyLists/app/src/main/res/xml/data_extraction_rules.xml -------------------------------------------------------------------------------- /ComposeTutorial04LazyLists/app/src/test/java/com/codingambitions/composelazylists/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial04LazyLists/app/src/test/java/com/codingambitions/composelazylists/ExampleUnitTest.kt -------------------------------------------------------------------------------- /ComposeTutorial04LazyLists/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial04LazyLists/build.gradle -------------------------------------------------------------------------------- /ComposeTutorial04LazyLists/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial04LazyLists/gradle.properties -------------------------------------------------------------------------------- /ComposeTutorial04LazyLists/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial04LazyLists/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /ComposeTutorial04LazyLists/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial04LazyLists/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /ComposeTutorial04LazyLists/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial04LazyLists/gradlew -------------------------------------------------------------------------------- /ComposeTutorial04LazyLists/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial04LazyLists/gradlew.bat -------------------------------------------------------------------------------- /ComposeTutorial04LazyLists/local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial04LazyLists/local.properties -------------------------------------------------------------------------------- /ComposeTutorial04LazyLists/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial04LazyLists/settings.gradle -------------------------------------------------------------------------------- /ComposeTutorial05LazyGrids/Screenshot_20230611_100742.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial05LazyGrids/Screenshot_20230611_100742.png -------------------------------------------------------------------------------- /ComposeTutorial05LazyGrids/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial05LazyGrids/app/build.gradle -------------------------------------------------------------------------------- /ComposeTutorial05LazyGrids/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial05LazyGrids/app/proguard-rules.pro -------------------------------------------------------------------------------- /ComposeTutorial05LazyGrids/app/src/androidTest/java/com/codingambitions/compsoetutorial5lazygrids/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial05LazyGrids/app/src/androidTest/java/com/codingambitions/compsoetutorial5lazygrids/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /ComposeTutorial05LazyGrids/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial05LazyGrids/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /ComposeTutorial05LazyGrids/app/src/main/java/com/codingambitions/compsoetutorial5lazygrids/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial05LazyGrids/app/src/main/java/com/codingambitions/compsoetutorial5lazygrids/MainActivity.kt -------------------------------------------------------------------------------- /ComposeTutorial05LazyGrids/app/src/main/java/com/codingambitions/compsoetutorial5lazygrids/TestData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial05LazyGrids/app/src/main/java/com/codingambitions/compsoetutorial5lazygrids/TestData.kt -------------------------------------------------------------------------------- /ComposeTutorial05LazyGrids/app/src/main/java/com/codingambitions/compsoetutorial5lazygrids/ui/theme/Color.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial05LazyGrids/app/src/main/java/com/codingambitions/compsoetutorial5lazygrids/ui/theme/Color.kt -------------------------------------------------------------------------------- /ComposeTutorial05LazyGrids/app/src/main/java/com/codingambitions/compsoetutorial5lazygrids/ui/theme/Theme.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial05LazyGrids/app/src/main/java/com/codingambitions/compsoetutorial5lazygrids/ui/theme/Theme.kt -------------------------------------------------------------------------------- /ComposeTutorial05LazyGrids/app/src/main/java/com/codingambitions/compsoetutorial5lazygrids/ui/theme/Type.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial05LazyGrids/app/src/main/java/com/codingambitions/compsoetutorial5lazygrids/ui/theme/Type.kt -------------------------------------------------------------------------------- /ComposeTutorial05LazyGrids/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial05LazyGrids/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /ComposeTutorial05LazyGrids/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial05LazyGrids/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /ComposeTutorial05LazyGrids/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial05LazyGrids/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /ComposeTutorial05LazyGrids/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial05LazyGrids/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /ComposeTutorial05LazyGrids/app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial05LazyGrids/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /ComposeTutorial05LazyGrids/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial05LazyGrids/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /ComposeTutorial05LazyGrids/app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial05LazyGrids/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /ComposeTutorial05LazyGrids/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial05LazyGrids/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /ComposeTutorial05LazyGrids/app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial05LazyGrids/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /ComposeTutorial05LazyGrids/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial05LazyGrids/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /ComposeTutorial05LazyGrids/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial05LazyGrids/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /ComposeTutorial05LazyGrids/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial05LazyGrids/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /ComposeTutorial05LazyGrids/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial05LazyGrids/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /ComposeTutorial05LazyGrids/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial05LazyGrids/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /ComposeTutorial05LazyGrids/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial05LazyGrids/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /ComposeTutorial05LazyGrids/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial05LazyGrids/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /ComposeTutorial05LazyGrids/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial05LazyGrids/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /ComposeTutorial05LazyGrids/app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial05LazyGrids/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /ComposeTutorial05LazyGrids/app/src/main/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial05LazyGrids/app/src/main/res/xml/data_extraction_rules.xml -------------------------------------------------------------------------------- /ComposeTutorial05LazyGrids/app/src/test/java/com/codingambitions/compsoetutorial5lazygrids/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial05LazyGrids/app/src/test/java/com/codingambitions/compsoetutorial5lazygrids/ExampleUnitTest.kt -------------------------------------------------------------------------------- /ComposeTutorial05LazyGrids/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial05LazyGrids/build.gradle -------------------------------------------------------------------------------- /ComposeTutorial05LazyGrids/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial05LazyGrids/gradle.properties -------------------------------------------------------------------------------- /ComposeTutorial05LazyGrids/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial05LazyGrids/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /ComposeTutorial05LazyGrids/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial05LazyGrids/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /ComposeTutorial05LazyGrids/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial05LazyGrids/gradlew -------------------------------------------------------------------------------- /ComposeTutorial05LazyGrids/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial05LazyGrids/gradlew.bat -------------------------------------------------------------------------------- /ComposeTutorial05LazyGrids/local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial05LazyGrids/local.properties -------------------------------------------------------------------------------- /ComposeTutorial05LazyGrids/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial05LazyGrids/settings.gradle -------------------------------------------------------------------------------- /ComposeTutorial06LazyStaggeredGrids/Screenshot_20230616_235305.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial06LazyStaggeredGrids/Screenshot_20230616_235305.png -------------------------------------------------------------------------------- /ComposeTutorial06LazyStaggeredGrids/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial06LazyStaggeredGrids/app/build.gradle -------------------------------------------------------------------------------- /ComposeTutorial06LazyStaggeredGrids/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial06LazyStaggeredGrids/app/proguard-rules.pro -------------------------------------------------------------------------------- /ComposeTutorial06LazyStaggeredGrids/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial06LazyStaggeredGrids/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /ComposeTutorial06LazyStaggeredGrids/app/src/main/java/com/codingambitions/compopsetutorial6lazystaggeredgrids/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial06LazyStaggeredGrids/app/src/main/java/com/codingambitions/compopsetutorial6lazystaggeredgrids/MainActivity.kt -------------------------------------------------------------------------------- /ComposeTutorial06LazyStaggeredGrids/app/src/main/java/com/codingambitions/compopsetutorial6lazystaggeredgrids/TestData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial06LazyStaggeredGrids/app/src/main/java/com/codingambitions/compopsetutorial6lazystaggeredgrids/TestData.kt -------------------------------------------------------------------------------- /ComposeTutorial06LazyStaggeredGrids/app/src/main/java/com/codingambitions/compopsetutorial6lazystaggeredgrids/ui/theme/Color.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial06LazyStaggeredGrids/app/src/main/java/com/codingambitions/compopsetutorial6lazystaggeredgrids/ui/theme/Color.kt -------------------------------------------------------------------------------- /ComposeTutorial06LazyStaggeredGrids/app/src/main/java/com/codingambitions/compopsetutorial6lazystaggeredgrids/ui/theme/Theme.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial06LazyStaggeredGrids/app/src/main/java/com/codingambitions/compopsetutorial6lazystaggeredgrids/ui/theme/Theme.kt -------------------------------------------------------------------------------- /ComposeTutorial06LazyStaggeredGrids/app/src/main/java/com/codingambitions/compopsetutorial6lazystaggeredgrids/ui/theme/Type.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial06LazyStaggeredGrids/app/src/main/java/com/codingambitions/compopsetutorial6lazystaggeredgrids/ui/theme/Type.kt -------------------------------------------------------------------------------- /ComposeTutorial06LazyStaggeredGrids/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial06LazyStaggeredGrids/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /ComposeTutorial06LazyStaggeredGrids/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial06LazyStaggeredGrids/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /ComposeTutorial06LazyStaggeredGrids/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial06LazyStaggeredGrids/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /ComposeTutorial06LazyStaggeredGrids/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial06LazyStaggeredGrids/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /ComposeTutorial06LazyStaggeredGrids/app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial06LazyStaggeredGrids/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /ComposeTutorial06LazyStaggeredGrids/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial06LazyStaggeredGrids/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /ComposeTutorial06LazyStaggeredGrids/app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial06LazyStaggeredGrids/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /ComposeTutorial06LazyStaggeredGrids/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial06LazyStaggeredGrids/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /ComposeTutorial06LazyStaggeredGrids/app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial06LazyStaggeredGrids/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /ComposeTutorial06LazyStaggeredGrids/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial06LazyStaggeredGrids/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /ComposeTutorial06LazyStaggeredGrids/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial06LazyStaggeredGrids/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /ComposeTutorial06LazyStaggeredGrids/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial06LazyStaggeredGrids/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /ComposeTutorial06LazyStaggeredGrids/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial06LazyStaggeredGrids/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /ComposeTutorial06LazyStaggeredGrids/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial06LazyStaggeredGrids/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /ComposeTutorial06LazyStaggeredGrids/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial06LazyStaggeredGrids/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /ComposeTutorial06LazyStaggeredGrids/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial06LazyStaggeredGrids/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /ComposeTutorial06LazyStaggeredGrids/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial06LazyStaggeredGrids/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /ComposeTutorial06LazyStaggeredGrids/app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial06LazyStaggeredGrids/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /ComposeTutorial06LazyStaggeredGrids/app/src/main/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial06LazyStaggeredGrids/app/src/main/res/xml/data_extraction_rules.xml -------------------------------------------------------------------------------- /ComposeTutorial06LazyStaggeredGrids/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial06LazyStaggeredGrids/build.gradle -------------------------------------------------------------------------------- /ComposeTutorial06LazyStaggeredGrids/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial06LazyStaggeredGrids/gradle.properties -------------------------------------------------------------------------------- /ComposeTutorial06LazyStaggeredGrids/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial06LazyStaggeredGrids/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /ComposeTutorial06LazyStaggeredGrids/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial06LazyStaggeredGrids/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /ComposeTutorial06LazyStaggeredGrids/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial06LazyStaggeredGrids/gradlew -------------------------------------------------------------------------------- /ComposeTutorial06LazyStaggeredGrids/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial06LazyStaggeredGrids/gradlew.bat -------------------------------------------------------------------------------- /ComposeTutorial06LazyStaggeredGrids/local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial06LazyStaggeredGrids/local.properties -------------------------------------------------------------------------------- /ComposeTutorial06LazyStaggeredGrids/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial06LazyStaggeredGrids/settings.gradle -------------------------------------------------------------------------------- /ComposeTutorial07NavigationBasics/Screenshot_20230814_101108.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial07NavigationBasics/Screenshot_20230814_101108.png -------------------------------------------------------------------------------- /ComposeTutorial07NavigationBasics/Screenshot_20230814_101119.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial07NavigationBasics/Screenshot_20230814_101119.png -------------------------------------------------------------------------------- /ComposeTutorial07NavigationBasics/app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial07NavigationBasics/app/build.gradle.kts -------------------------------------------------------------------------------- /ComposeTutorial07NavigationBasics/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial07NavigationBasics/app/proguard-rules.pro -------------------------------------------------------------------------------- /ComposeTutorial07NavigationBasics/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial07NavigationBasics/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /ComposeTutorial07NavigationBasics/app/src/main/java/com/codingambitions/jetpackcomposetutorial7/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial07NavigationBasics/app/src/main/java/com/codingambitions/jetpackcomposetutorial7/MainActivity.kt -------------------------------------------------------------------------------- /ComposeTutorial07NavigationBasics/app/src/main/java/com/codingambitions/jetpackcomposetutorial7/ui/theme/Color.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial07NavigationBasics/app/src/main/java/com/codingambitions/jetpackcomposetutorial7/ui/theme/Color.kt -------------------------------------------------------------------------------- /ComposeTutorial07NavigationBasics/app/src/main/java/com/codingambitions/jetpackcomposetutorial7/ui/theme/Theme.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial07NavigationBasics/app/src/main/java/com/codingambitions/jetpackcomposetutorial7/ui/theme/Theme.kt -------------------------------------------------------------------------------- /ComposeTutorial07NavigationBasics/app/src/main/java/com/codingambitions/jetpackcomposetutorial7/ui/theme/Type.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial07NavigationBasics/app/src/main/java/com/codingambitions/jetpackcomposetutorial7/ui/theme/Type.kt -------------------------------------------------------------------------------- /ComposeTutorial07NavigationBasics/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial07NavigationBasics/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /ComposeTutorial07NavigationBasics/app/src/main/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial07NavigationBasics/app/src/main/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /ComposeTutorial07NavigationBasics/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial07NavigationBasics/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /ComposeTutorial07NavigationBasics/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial07NavigationBasics/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /ComposeTutorial07NavigationBasics/app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial07NavigationBasics/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /ComposeTutorial07NavigationBasics/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial07NavigationBasics/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /ComposeTutorial07NavigationBasics/app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial07NavigationBasics/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /ComposeTutorial07NavigationBasics/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial07NavigationBasics/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /ComposeTutorial07NavigationBasics/app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial07NavigationBasics/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /ComposeTutorial07NavigationBasics/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial07NavigationBasics/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /ComposeTutorial07NavigationBasics/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial07NavigationBasics/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /ComposeTutorial07NavigationBasics/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial07NavigationBasics/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /ComposeTutorial07NavigationBasics/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial07NavigationBasics/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /ComposeTutorial07NavigationBasics/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial07NavigationBasics/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /ComposeTutorial07NavigationBasics/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial07NavigationBasics/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /ComposeTutorial07NavigationBasics/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial07NavigationBasics/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /ComposeTutorial07NavigationBasics/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial07NavigationBasics/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /ComposeTutorial07NavigationBasics/app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial07NavigationBasics/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /ComposeTutorial07NavigationBasics/app/src/main/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial07NavigationBasics/app/src/main/res/xml/data_extraction_rules.xml -------------------------------------------------------------------------------- /ComposeTutorial07NavigationBasics/app/src/test/java/com/codingambitions/jetpackcomposetutorial7/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial07NavigationBasics/app/src/test/java/com/codingambitions/jetpackcomposetutorial7/ExampleUnitTest.kt -------------------------------------------------------------------------------- /ComposeTutorial07NavigationBasics/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial07NavigationBasics/build.gradle.kts -------------------------------------------------------------------------------- /ComposeTutorial07NavigationBasics/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial07NavigationBasics/gradle.properties -------------------------------------------------------------------------------- /ComposeTutorial07NavigationBasics/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial07NavigationBasics/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /ComposeTutorial07NavigationBasics/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial07NavigationBasics/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /ComposeTutorial07NavigationBasics/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial07NavigationBasics/gradlew -------------------------------------------------------------------------------- /ComposeTutorial07NavigationBasics/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial07NavigationBasics/gradlew.bat -------------------------------------------------------------------------------- /ComposeTutorial07NavigationBasics/local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial07NavigationBasics/local.properties -------------------------------------------------------------------------------- /ComposeTutorial07NavigationBasics/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial07NavigationBasics/settings.gradle.kts -------------------------------------------------------------------------------- /ComposeTutorial08NestedNavigation/Screenshot_20230814_101108.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial08NestedNavigation/Screenshot_20230814_101108.png -------------------------------------------------------------------------------- /ComposeTutorial08NestedNavigation/Screenshot_20230814_101119.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial08NestedNavigation/Screenshot_20230814_101119.png -------------------------------------------------------------------------------- /ComposeTutorial08NestedNavigation/app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial08NestedNavigation/app/build.gradle.kts -------------------------------------------------------------------------------- /ComposeTutorial08NestedNavigation/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial08NestedNavigation/app/proguard-rules.pro -------------------------------------------------------------------------------- /ComposeTutorial08NestedNavigation/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial08NestedNavigation/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /ComposeTutorial08NestedNavigation/app/src/main/java/com/codingambitions/jetpackcomposetutorial7/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial08NestedNavigation/app/src/main/java/com/codingambitions/jetpackcomposetutorial7/MainActivity.kt -------------------------------------------------------------------------------- /ComposeTutorial08NestedNavigation/app/src/main/java/com/codingambitions/jetpackcomposetutorial7/ui/theme/Color.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial08NestedNavigation/app/src/main/java/com/codingambitions/jetpackcomposetutorial7/ui/theme/Color.kt -------------------------------------------------------------------------------- /ComposeTutorial08NestedNavigation/app/src/main/java/com/codingambitions/jetpackcomposetutorial7/ui/theme/Theme.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial08NestedNavigation/app/src/main/java/com/codingambitions/jetpackcomposetutorial7/ui/theme/Theme.kt -------------------------------------------------------------------------------- /ComposeTutorial08NestedNavigation/app/src/main/java/com/codingambitions/jetpackcomposetutorial7/ui/theme/Type.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial08NestedNavigation/app/src/main/java/com/codingambitions/jetpackcomposetutorial7/ui/theme/Type.kt -------------------------------------------------------------------------------- /ComposeTutorial08NestedNavigation/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial08NestedNavigation/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /ComposeTutorial08NestedNavigation/app/src/main/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial08NestedNavigation/app/src/main/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /ComposeTutorial08NestedNavigation/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial08NestedNavigation/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /ComposeTutorial08NestedNavigation/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial08NestedNavigation/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /ComposeTutorial08NestedNavigation/app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial08NestedNavigation/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /ComposeTutorial08NestedNavigation/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial08NestedNavigation/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /ComposeTutorial08NestedNavigation/app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial08NestedNavigation/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /ComposeTutorial08NestedNavigation/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial08NestedNavigation/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /ComposeTutorial08NestedNavigation/app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial08NestedNavigation/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /ComposeTutorial08NestedNavigation/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial08NestedNavigation/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /ComposeTutorial08NestedNavigation/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial08NestedNavigation/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /ComposeTutorial08NestedNavigation/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial08NestedNavigation/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /ComposeTutorial08NestedNavigation/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial08NestedNavigation/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /ComposeTutorial08NestedNavigation/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial08NestedNavigation/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /ComposeTutorial08NestedNavigation/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial08NestedNavigation/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /ComposeTutorial08NestedNavigation/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial08NestedNavigation/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /ComposeTutorial08NestedNavigation/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial08NestedNavigation/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /ComposeTutorial08NestedNavigation/app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial08NestedNavigation/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /ComposeTutorial08NestedNavigation/app/src/main/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial08NestedNavigation/app/src/main/res/xml/data_extraction_rules.xml -------------------------------------------------------------------------------- /ComposeTutorial08NestedNavigation/app/src/test/java/com/codingambitions/jetpackcomposetutorial7/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial08NestedNavigation/app/src/test/java/com/codingambitions/jetpackcomposetutorial7/ExampleUnitTest.kt -------------------------------------------------------------------------------- /ComposeTutorial08NestedNavigation/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial08NestedNavigation/build.gradle.kts -------------------------------------------------------------------------------- /ComposeTutorial08NestedNavigation/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial08NestedNavigation/gradle.properties -------------------------------------------------------------------------------- /ComposeTutorial08NestedNavigation/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial08NestedNavigation/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /ComposeTutorial08NestedNavigation/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial08NestedNavigation/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /ComposeTutorial08NestedNavigation/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial08NestedNavigation/gradlew -------------------------------------------------------------------------------- /ComposeTutorial08NestedNavigation/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial08NestedNavigation/gradlew.bat -------------------------------------------------------------------------------- /ComposeTutorial08NestedNavigation/local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial08NestedNavigation/local.properties -------------------------------------------------------------------------------- /ComposeTutorial08NestedNavigation/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial08NestedNavigation/settings.gradle.kts -------------------------------------------------------------------------------- /ComposeTutorial09NestedNavigationWithBottomBar/Screenshot_20230902_110216.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial09NestedNavigationWithBottomBar/Screenshot_20230902_110216.png -------------------------------------------------------------------------------- /ComposeTutorial09NestedNavigationWithBottomBar/Screenshot_20230902_111243.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial09NestedNavigationWithBottomBar/Screenshot_20230902_111243.png -------------------------------------------------------------------------------- /ComposeTutorial09NestedNavigationWithBottomBar/app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial09NestedNavigationWithBottomBar/app/build.gradle.kts -------------------------------------------------------------------------------- /ComposeTutorial09NestedNavigationWithBottomBar/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial09NestedNavigationWithBottomBar/app/proguard-rules.pro -------------------------------------------------------------------------------- /ComposeTutorial09NestedNavigationWithBottomBar/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial09NestedNavigationWithBottomBar/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /ComposeTutorial09NestedNavigationWithBottomBar/app/src/main/java/com/codingambitions/jetpackcomposetutorial7/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial09NestedNavigationWithBottomBar/app/src/main/java/com/codingambitions/jetpackcomposetutorial7/MainActivity.kt -------------------------------------------------------------------------------- /ComposeTutorial09NestedNavigationWithBottomBar/app/src/main/java/com/codingambitions/jetpackcomposetutorial7/ui/theme/Color.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial09NestedNavigationWithBottomBar/app/src/main/java/com/codingambitions/jetpackcomposetutorial7/ui/theme/Color.kt -------------------------------------------------------------------------------- /ComposeTutorial09NestedNavigationWithBottomBar/app/src/main/java/com/codingambitions/jetpackcomposetutorial7/ui/theme/Theme.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial09NestedNavigationWithBottomBar/app/src/main/java/com/codingambitions/jetpackcomposetutorial7/ui/theme/Theme.kt -------------------------------------------------------------------------------- /ComposeTutorial09NestedNavigationWithBottomBar/app/src/main/java/com/codingambitions/jetpackcomposetutorial7/ui/theme/Type.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial09NestedNavigationWithBottomBar/app/src/main/java/com/codingambitions/jetpackcomposetutorial7/ui/theme/Type.kt -------------------------------------------------------------------------------- /ComposeTutorial09NestedNavigationWithBottomBar/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial09NestedNavigationWithBottomBar/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /ComposeTutorial09NestedNavigationWithBottomBar/app/src/main/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial09NestedNavigationWithBottomBar/app/src/main/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /ComposeTutorial09NestedNavigationWithBottomBar/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial09NestedNavigationWithBottomBar/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /ComposeTutorial09NestedNavigationWithBottomBar/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial09NestedNavigationWithBottomBar/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /ComposeTutorial09NestedNavigationWithBottomBar/app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial09NestedNavigationWithBottomBar/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /ComposeTutorial09NestedNavigationWithBottomBar/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial09NestedNavigationWithBottomBar/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /ComposeTutorial09NestedNavigationWithBottomBar/app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial09NestedNavigationWithBottomBar/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /ComposeTutorial09NestedNavigationWithBottomBar/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial09NestedNavigationWithBottomBar/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /ComposeTutorial09NestedNavigationWithBottomBar/app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial09NestedNavigationWithBottomBar/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /ComposeTutorial09NestedNavigationWithBottomBar/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial09NestedNavigationWithBottomBar/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /ComposeTutorial09NestedNavigationWithBottomBar/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial09NestedNavigationWithBottomBar/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /ComposeTutorial09NestedNavigationWithBottomBar/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial09NestedNavigationWithBottomBar/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /ComposeTutorial09NestedNavigationWithBottomBar/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial09NestedNavigationWithBottomBar/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /ComposeTutorial09NestedNavigationWithBottomBar/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial09NestedNavigationWithBottomBar/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /ComposeTutorial09NestedNavigationWithBottomBar/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial09NestedNavigationWithBottomBar/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /ComposeTutorial09NestedNavigationWithBottomBar/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial09NestedNavigationWithBottomBar/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /ComposeTutorial09NestedNavigationWithBottomBar/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial09NestedNavigationWithBottomBar/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /ComposeTutorial09NestedNavigationWithBottomBar/app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial09NestedNavigationWithBottomBar/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /ComposeTutorial09NestedNavigationWithBottomBar/app/src/main/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial09NestedNavigationWithBottomBar/app/src/main/res/xml/data_extraction_rules.xml -------------------------------------------------------------------------------- /ComposeTutorial09NestedNavigationWithBottomBar/app/src/test/java/com/codingambitions/jetpackcomposetutorial7/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial09NestedNavigationWithBottomBar/app/src/test/java/com/codingambitions/jetpackcomposetutorial7/ExampleUnitTest.kt -------------------------------------------------------------------------------- /ComposeTutorial09NestedNavigationWithBottomBar/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial09NestedNavigationWithBottomBar/build.gradle.kts -------------------------------------------------------------------------------- /ComposeTutorial09NestedNavigationWithBottomBar/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial09NestedNavigationWithBottomBar/gradle.properties -------------------------------------------------------------------------------- /ComposeTutorial09NestedNavigationWithBottomBar/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial09NestedNavigationWithBottomBar/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /ComposeTutorial09NestedNavigationWithBottomBar/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial09NestedNavigationWithBottomBar/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /ComposeTutorial09NestedNavigationWithBottomBar/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial09NestedNavigationWithBottomBar/gradlew -------------------------------------------------------------------------------- /ComposeTutorial09NestedNavigationWithBottomBar/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial09NestedNavigationWithBottomBar/gradlew.bat -------------------------------------------------------------------------------- /ComposeTutorial09NestedNavigationWithBottomBar/local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial09NestedNavigationWithBottomBar/local.properties -------------------------------------------------------------------------------- /ComposeTutorial09NestedNavigationWithBottomBar/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial09NestedNavigationWithBottomBar/settings.gradle.kts -------------------------------------------------------------------------------- /ComposeTutorial10SideEffects/app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial10SideEffects/app/build.gradle.kts -------------------------------------------------------------------------------- /ComposeTutorial10SideEffects/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial10SideEffects/app/proguard-rules.pro -------------------------------------------------------------------------------- /ComposeTutorial10SideEffects/app/src/androidTest/java/com/codingambitions/jetpackcomposetutorial10/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial10SideEffects/app/src/androidTest/java/com/codingambitions/jetpackcomposetutorial10/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /ComposeTutorial10SideEffects/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial10SideEffects/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /ComposeTutorial10SideEffects/app/src/main/java/com/codingambitions/jetpackcomposetutorial10/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial10SideEffects/app/src/main/java/com/codingambitions/jetpackcomposetutorial10/MainActivity.kt -------------------------------------------------------------------------------- /ComposeTutorial10SideEffects/app/src/main/java/com/codingambitions/jetpackcomposetutorial10/ui/theme/Color.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial10SideEffects/app/src/main/java/com/codingambitions/jetpackcomposetutorial10/ui/theme/Color.kt -------------------------------------------------------------------------------- /ComposeTutorial10SideEffects/app/src/main/java/com/codingambitions/jetpackcomposetutorial10/ui/theme/Theme.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial10SideEffects/app/src/main/java/com/codingambitions/jetpackcomposetutorial10/ui/theme/Theme.kt -------------------------------------------------------------------------------- /ComposeTutorial10SideEffects/app/src/main/java/com/codingambitions/jetpackcomposetutorial10/ui/theme/Type.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial10SideEffects/app/src/main/java/com/codingambitions/jetpackcomposetutorial10/ui/theme/Type.kt -------------------------------------------------------------------------------- /ComposeTutorial10SideEffects/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial10SideEffects/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /ComposeTutorial10SideEffects/app/src/main/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial10SideEffects/app/src/main/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /ComposeTutorial10SideEffects/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial10SideEffects/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /ComposeTutorial10SideEffects/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial10SideEffects/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /ComposeTutorial10SideEffects/app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial10SideEffects/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /ComposeTutorial10SideEffects/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial10SideEffects/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /ComposeTutorial10SideEffects/app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial10SideEffects/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /ComposeTutorial10SideEffects/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial10SideEffects/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /ComposeTutorial10SideEffects/app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial10SideEffects/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /ComposeTutorial10SideEffects/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial10SideEffects/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /ComposeTutorial10SideEffects/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial10SideEffects/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /ComposeTutorial10SideEffects/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial10SideEffects/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /ComposeTutorial10SideEffects/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial10SideEffects/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /ComposeTutorial10SideEffects/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial10SideEffects/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /ComposeTutorial10SideEffects/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial10SideEffects/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /ComposeTutorial10SideEffects/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial10SideEffects/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /ComposeTutorial10SideEffects/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial10SideEffects/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /ComposeTutorial10SideEffects/app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial10SideEffects/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /ComposeTutorial10SideEffects/app/src/main/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial10SideEffects/app/src/main/res/xml/data_extraction_rules.xml -------------------------------------------------------------------------------- /ComposeTutorial10SideEffects/app/src/test/java/com/codingambitions/jetpackcomposetutorial10/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial10SideEffects/app/src/test/java/com/codingambitions/jetpackcomposetutorial10/ExampleUnitTest.kt -------------------------------------------------------------------------------- /ComposeTutorial10SideEffects/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial10SideEffects/build.gradle.kts -------------------------------------------------------------------------------- /ComposeTutorial10SideEffects/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial10SideEffects/gradle.properties -------------------------------------------------------------------------------- /ComposeTutorial10SideEffects/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial10SideEffects/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /ComposeTutorial10SideEffects/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial10SideEffects/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /ComposeTutorial10SideEffects/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial10SideEffects/gradlew -------------------------------------------------------------------------------- /ComposeTutorial10SideEffects/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial10SideEffects/gradlew.bat -------------------------------------------------------------------------------- /ComposeTutorial10SideEffects/local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial10SideEffects/local.properties -------------------------------------------------------------------------------- /ComposeTutorial10SideEffects/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial10SideEffects/settings.gradle.kts -------------------------------------------------------------------------------- /ComposeTutorial11CompositionLocal/app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial11CompositionLocal/app/build.gradle.kts -------------------------------------------------------------------------------- /ComposeTutorial11CompositionLocal/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial11CompositionLocal/app/proguard-rules.pro -------------------------------------------------------------------------------- /ComposeTutorial11CompositionLocal/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial11CompositionLocal/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /ComposeTutorial11CompositionLocal/app/src/main/java/com/codingambitions/composetutorial11compositionlocal/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial11CompositionLocal/app/src/main/java/com/codingambitions/composetutorial11compositionlocal/MainActivity.kt -------------------------------------------------------------------------------- /ComposeTutorial11CompositionLocal/app/src/main/java/com/codingambitions/composetutorial11compositionlocal/ui/theme/Color.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial11CompositionLocal/app/src/main/java/com/codingambitions/composetutorial11compositionlocal/ui/theme/Color.kt -------------------------------------------------------------------------------- /ComposeTutorial11CompositionLocal/app/src/main/java/com/codingambitions/composetutorial11compositionlocal/ui/theme/Theme.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial11CompositionLocal/app/src/main/java/com/codingambitions/composetutorial11compositionlocal/ui/theme/Theme.kt -------------------------------------------------------------------------------- /ComposeTutorial11CompositionLocal/app/src/main/java/com/codingambitions/composetutorial11compositionlocal/ui/theme/Type.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial11CompositionLocal/app/src/main/java/com/codingambitions/composetutorial11compositionlocal/ui/theme/Type.kt -------------------------------------------------------------------------------- /ComposeTutorial11CompositionLocal/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial11CompositionLocal/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /ComposeTutorial11CompositionLocal/app/src/main/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial11CompositionLocal/app/src/main/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /ComposeTutorial11CompositionLocal/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial11CompositionLocal/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /ComposeTutorial11CompositionLocal/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial11CompositionLocal/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /ComposeTutorial11CompositionLocal/app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial11CompositionLocal/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /ComposeTutorial11CompositionLocal/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial11CompositionLocal/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /ComposeTutorial11CompositionLocal/app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial11CompositionLocal/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /ComposeTutorial11CompositionLocal/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial11CompositionLocal/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /ComposeTutorial11CompositionLocal/app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial11CompositionLocal/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /ComposeTutorial11CompositionLocal/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial11CompositionLocal/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /ComposeTutorial11CompositionLocal/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial11CompositionLocal/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /ComposeTutorial11CompositionLocal/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial11CompositionLocal/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /ComposeTutorial11CompositionLocal/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial11CompositionLocal/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /ComposeTutorial11CompositionLocal/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial11CompositionLocal/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /ComposeTutorial11CompositionLocal/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial11CompositionLocal/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /ComposeTutorial11CompositionLocal/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial11CompositionLocal/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /ComposeTutorial11CompositionLocal/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial11CompositionLocal/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /ComposeTutorial11CompositionLocal/app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial11CompositionLocal/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /ComposeTutorial11CompositionLocal/app/src/main/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial11CompositionLocal/app/src/main/res/xml/data_extraction_rules.xml -------------------------------------------------------------------------------- /ComposeTutorial11CompositionLocal/app/src/test/java/com/codingambitions/composetutorial11compositionlocal/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial11CompositionLocal/app/src/test/java/com/codingambitions/composetutorial11compositionlocal/ExampleUnitTest.kt -------------------------------------------------------------------------------- /ComposeTutorial11CompositionLocal/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial11CompositionLocal/build.gradle.kts -------------------------------------------------------------------------------- /ComposeTutorial11CompositionLocal/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial11CompositionLocal/gradle.properties -------------------------------------------------------------------------------- /ComposeTutorial11CompositionLocal/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial11CompositionLocal/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /ComposeTutorial11CompositionLocal/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial11CompositionLocal/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /ComposeTutorial11CompositionLocal/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial11CompositionLocal/gradlew -------------------------------------------------------------------------------- /ComposeTutorial11CompositionLocal/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial11CompositionLocal/gradlew.bat -------------------------------------------------------------------------------- /ComposeTutorial11CompositionLocal/local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial11CompositionLocal/local.properties -------------------------------------------------------------------------------- /ComposeTutorial11CompositionLocal/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial11CompositionLocal/settings.gradle.kts -------------------------------------------------------------------------------- /ComposeTutorial12DifferentScreenSizesSupport/Screenshot_20230924_161547_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial12DifferentScreenSizesSupport/Screenshot_20230924_161547_desktop.png -------------------------------------------------------------------------------- /ComposeTutorial12DifferentScreenSizesSupport/Screenshot_mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial12DifferentScreenSizesSupport/Screenshot_mobile.png -------------------------------------------------------------------------------- /ComposeTutorial12DifferentScreenSizesSupport/Screenshot_tablet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial12DifferentScreenSizesSupport/Screenshot_tablet.png -------------------------------------------------------------------------------- /ComposeTutorial12DifferentScreenSizesSupport/app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial12DifferentScreenSizesSupport/app/build.gradle.kts -------------------------------------------------------------------------------- /ComposeTutorial12DifferentScreenSizesSupport/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial12DifferentScreenSizesSupport/app/proguard-rules.pro -------------------------------------------------------------------------------- /ComposeTutorial12DifferentScreenSizesSupport/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial12DifferentScreenSizesSupport/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /ComposeTutorial12DifferentScreenSizesSupport/app/src/main/res/drawable/dummy_user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial12DifferentScreenSizesSupport/app/src/main/res/drawable/dummy_user.png -------------------------------------------------------------------------------- /ComposeTutorial12DifferentScreenSizesSupport/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial12DifferentScreenSizesSupport/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /ComposeTutorial12DifferentScreenSizesSupport/app/src/main/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial12DifferentScreenSizesSupport/app/src/main/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /ComposeTutorial12DifferentScreenSizesSupport/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial12DifferentScreenSizesSupport/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /ComposeTutorial12DifferentScreenSizesSupport/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial12DifferentScreenSizesSupport/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /ComposeTutorial12DifferentScreenSizesSupport/app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial12DifferentScreenSizesSupport/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /ComposeTutorial12DifferentScreenSizesSupport/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial12DifferentScreenSizesSupport/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /ComposeTutorial12DifferentScreenSizesSupport/app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial12DifferentScreenSizesSupport/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /ComposeTutorial12DifferentScreenSizesSupport/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial12DifferentScreenSizesSupport/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /ComposeTutorial12DifferentScreenSizesSupport/app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial12DifferentScreenSizesSupport/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /ComposeTutorial12DifferentScreenSizesSupport/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial12DifferentScreenSizesSupport/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /ComposeTutorial12DifferentScreenSizesSupport/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial12DifferentScreenSizesSupport/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /ComposeTutorial12DifferentScreenSizesSupport/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial12DifferentScreenSizesSupport/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /ComposeTutorial12DifferentScreenSizesSupport/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial12DifferentScreenSizesSupport/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /ComposeTutorial12DifferentScreenSizesSupport/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial12DifferentScreenSizesSupport/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /ComposeTutorial12DifferentScreenSizesSupport/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial12DifferentScreenSizesSupport/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /ComposeTutorial12DifferentScreenSizesSupport/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial12DifferentScreenSizesSupport/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /ComposeTutorial12DifferentScreenSizesSupport/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial12DifferentScreenSizesSupport/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /ComposeTutorial12DifferentScreenSizesSupport/app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial12DifferentScreenSizesSupport/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /ComposeTutorial12DifferentScreenSizesSupport/app/src/main/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial12DifferentScreenSizesSupport/app/src/main/res/xml/data_extraction_rules.xml -------------------------------------------------------------------------------- /ComposeTutorial12DifferentScreenSizesSupport/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial12DifferentScreenSizesSupport/build.gradle.kts -------------------------------------------------------------------------------- /ComposeTutorial12DifferentScreenSizesSupport/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial12DifferentScreenSizesSupport/gradle.properties -------------------------------------------------------------------------------- /ComposeTutorial12DifferentScreenSizesSupport/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial12DifferentScreenSizesSupport/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /ComposeTutorial12DifferentScreenSizesSupport/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial12DifferentScreenSizesSupport/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /ComposeTutorial12DifferentScreenSizesSupport/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial12DifferentScreenSizesSupport/gradlew -------------------------------------------------------------------------------- /ComposeTutorial12DifferentScreenSizesSupport/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial12DifferentScreenSizesSupport/gradlew.bat -------------------------------------------------------------------------------- /ComposeTutorial12DifferentScreenSizesSupport/local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial12DifferentScreenSizesSupport/local.properties -------------------------------------------------------------------------------- /ComposeTutorial12DifferentScreenSizesSupport/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial12DifferentScreenSizesSupport/settings.gradle.kts -------------------------------------------------------------------------------- /ComposeTutorial13IntegrateGoogleMaps/Screenshot_20231001_180004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial13IntegrateGoogleMaps/Screenshot_20231001_180004.png -------------------------------------------------------------------------------- /ComposeTutorial13IntegrateGoogleMaps/app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial13IntegrateGoogleMaps/app/build.gradle.kts -------------------------------------------------------------------------------- /ComposeTutorial13IntegrateGoogleMaps/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial13IntegrateGoogleMaps/app/proguard-rules.pro -------------------------------------------------------------------------------- /ComposeTutorial13IntegrateGoogleMaps/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial13IntegrateGoogleMaps/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /ComposeTutorial13IntegrateGoogleMaps/app/src/main/java/com/codingambitions/composetutorialintegrategooglemaps/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial13IntegrateGoogleMaps/app/src/main/java/com/codingambitions/composetutorialintegrategooglemaps/MainActivity.kt -------------------------------------------------------------------------------- /ComposeTutorial13IntegrateGoogleMaps/app/src/main/java/com/codingambitions/composetutorialintegrategooglemaps/ui/theme/Color.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial13IntegrateGoogleMaps/app/src/main/java/com/codingambitions/composetutorialintegrategooglemaps/ui/theme/Color.kt -------------------------------------------------------------------------------- /ComposeTutorial13IntegrateGoogleMaps/app/src/main/java/com/codingambitions/composetutorialintegrategooglemaps/ui/theme/Theme.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial13IntegrateGoogleMaps/app/src/main/java/com/codingambitions/composetutorialintegrategooglemaps/ui/theme/Theme.kt -------------------------------------------------------------------------------- /ComposeTutorial13IntegrateGoogleMaps/app/src/main/java/com/codingambitions/composetutorialintegrategooglemaps/ui/theme/Type.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial13IntegrateGoogleMaps/app/src/main/java/com/codingambitions/composetutorialintegrategooglemaps/ui/theme/Type.kt -------------------------------------------------------------------------------- /ComposeTutorial13IntegrateGoogleMaps/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial13IntegrateGoogleMaps/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /ComposeTutorial13IntegrateGoogleMaps/app/src/main/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial13IntegrateGoogleMaps/app/src/main/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /ComposeTutorial13IntegrateGoogleMaps/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial13IntegrateGoogleMaps/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /ComposeTutorial13IntegrateGoogleMaps/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial13IntegrateGoogleMaps/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /ComposeTutorial13IntegrateGoogleMaps/app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial13IntegrateGoogleMaps/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /ComposeTutorial13IntegrateGoogleMaps/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial13IntegrateGoogleMaps/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /ComposeTutorial13IntegrateGoogleMaps/app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial13IntegrateGoogleMaps/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /ComposeTutorial13IntegrateGoogleMaps/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial13IntegrateGoogleMaps/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /ComposeTutorial13IntegrateGoogleMaps/app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial13IntegrateGoogleMaps/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /ComposeTutorial13IntegrateGoogleMaps/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial13IntegrateGoogleMaps/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /ComposeTutorial13IntegrateGoogleMaps/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial13IntegrateGoogleMaps/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /ComposeTutorial13IntegrateGoogleMaps/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial13IntegrateGoogleMaps/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /ComposeTutorial13IntegrateGoogleMaps/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial13IntegrateGoogleMaps/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /ComposeTutorial13IntegrateGoogleMaps/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial13IntegrateGoogleMaps/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /ComposeTutorial13IntegrateGoogleMaps/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial13IntegrateGoogleMaps/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /ComposeTutorial13IntegrateGoogleMaps/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial13IntegrateGoogleMaps/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /ComposeTutorial13IntegrateGoogleMaps/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial13IntegrateGoogleMaps/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /ComposeTutorial13IntegrateGoogleMaps/app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial13IntegrateGoogleMaps/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /ComposeTutorial13IntegrateGoogleMaps/app/src/main/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial13IntegrateGoogleMaps/app/src/main/res/xml/data_extraction_rules.xml -------------------------------------------------------------------------------- /ComposeTutorial13IntegrateGoogleMaps/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial13IntegrateGoogleMaps/build.gradle.kts -------------------------------------------------------------------------------- /ComposeTutorial13IntegrateGoogleMaps/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial13IntegrateGoogleMaps/gradle.properties -------------------------------------------------------------------------------- /ComposeTutorial13IntegrateGoogleMaps/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial13IntegrateGoogleMaps/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /ComposeTutorial13IntegrateGoogleMaps/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial13IntegrateGoogleMaps/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /ComposeTutorial13IntegrateGoogleMaps/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial13IntegrateGoogleMaps/gradlew -------------------------------------------------------------------------------- /ComposeTutorial13IntegrateGoogleMaps/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial13IntegrateGoogleMaps/gradlew.bat -------------------------------------------------------------------------------- /ComposeTutorial13IntegrateGoogleMaps/local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial13IntegrateGoogleMaps/local.properties -------------------------------------------------------------------------------- /ComposeTutorial13IntegrateGoogleMaps/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial13IntegrateGoogleMaps/settings.gradle.kts -------------------------------------------------------------------------------- /ComposeTutorial14TextAndUserInput/Screenshot_20231015_113002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial14TextAndUserInput/Screenshot_20231015_113002.png -------------------------------------------------------------------------------- /ComposeTutorial14TextAndUserInput/Screenshot_20231015_113347.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial14TextAndUserInput/Screenshot_20231015_113347.png -------------------------------------------------------------------------------- /ComposeTutorial14TextAndUserInput/Screenshot_20231015_114320.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial14TextAndUserInput/Screenshot_20231015_114320.png -------------------------------------------------------------------------------- /ComposeTutorial14TextAndUserInput/app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial14TextAndUserInput/app/build.gradle.kts -------------------------------------------------------------------------------- /ComposeTutorial14TextAndUserInput/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial14TextAndUserInput/app/proguard-rules.pro -------------------------------------------------------------------------------- /ComposeTutorial14TextAndUserInput/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial14TextAndUserInput/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /ComposeTutorial14TextAndUserInput/app/src/main/java/com/codingambitions/composetutorial14textanduserinput/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial14TextAndUserInput/app/src/main/java/com/codingambitions/composetutorial14textanduserinput/MainActivity.kt -------------------------------------------------------------------------------- /ComposeTutorial14TextAndUserInput/app/src/main/java/com/codingambitions/composetutorial14textanduserinput/ui/theme/Color.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial14TextAndUserInput/app/src/main/java/com/codingambitions/composetutorial14textanduserinput/ui/theme/Color.kt -------------------------------------------------------------------------------- /ComposeTutorial14TextAndUserInput/app/src/main/java/com/codingambitions/composetutorial14textanduserinput/ui/theme/Theme.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial14TextAndUserInput/app/src/main/java/com/codingambitions/composetutorial14textanduserinput/ui/theme/Theme.kt -------------------------------------------------------------------------------- /ComposeTutorial14TextAndUserInput/app/src/main/java/com/codingambitions/composetutorial14textanduserinput/ui/theme/Type.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial14TextAndUserInput/app/src/main/java/com/codingambitions/composetutorial14textanduserinput/ui/theme/Type.kt -------------------------------------------------------------------------------- /ComposeTutorial14TextAndUserInput/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial14TextAndUserInput/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /ComposeTutorial14TextAndUserInput/app/src/main/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial14TextAndUserInput/app/src/main/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /ComposeTutorial14TextAndUserInput/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial14TextAndUserInput/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /ComposeTutorial14TextAndUserInput/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial14TextAndUserInput/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /ComposeTutorial14TextAndUserInput/app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial14TextAndUserInput/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /ComposeTutorial14TextAndUserInput/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial14TextAndUserInput/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /ComposeTutorial14TextAndUserInput/app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial14TextAndUserInput/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /ComposeTutorial14TextAndUserInput/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial14TextAndUserInput/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /ComposeTutorial14TextAndUserInput/app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial14TextAndUserInput/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /ComposeTutorial14TextAndUserInput/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial14TextAndUserInput/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /ComposeTutorial14TextAndUserInput/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial14TextAndUserInput/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /ComposeTutorial14TextAndUserInput/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial14TextAndUserInput/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /ComposeTutorial14TextAndUserInput/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial14TextAndUserInput/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /ComposeTutorial14TextAndUserInput/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial14TextAndUserInput/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /ComposeTutorial14TextAndUserInput/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial14TextAndUserInput/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /ComposeTutorial14TextAndUserInput/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial14TextAndUserInput/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /ComposeTutorial14TextAndUserInput/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial14TextAndUserInput/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /ComposeTutorial14TextAndUserInput/app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial14TextAndUserInput/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /ComposeTutorial14TextAndUserInput/app/src/main/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial14TextAndUserInput/app/src/main/res/xml/data_extraction_rules.xml -------------------------------------------------------------------------------- /ComposeTutorial14TextAndUserInput/app/src/test/java/com/codingambitions/composetutorial14textanduserinput/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial14TextAndUserInput/app/src/test/java/com/codingambitions/composetutorial14textanduserinput/ExampleUnitTest.kt -------------------------------------------------------------------------------- /ComposeTutorial14TextAndUserInput/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial14TextAndUserInput/build.gradle.kts -------------------------------------------------------------------------------- /ComposeTutorial14TextAndUserInput/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial14TextAndUserInput/gradle.properties -------------------------------------------------------------------------------- /ComposeTutorial14TextAndUserInput/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial14TextAndUserInput/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /ComposeTutorial14TextAndUserInput/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial14TextAndUserInput/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /ComposeTutorial14TextAndUserInput/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial14TextAndUserInput/gradlew -------------------------------------------------------------------------------- /ComposeTutorial14TextAndUserInput/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial14TextAndUserInput/gradlew.bat -------------------------------------------------------------------------------- /ComposeTutorial14TextAndUserInput/local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial14TextAndUserInput/local.properties -------------------------------------------------------------------------------- /ComposeTutorial14TextAndUserInput/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial14TextAndUserInput/settings.gradle.kts -------------------------------------------------------------------------------- /ComposeTutorial15Gestures/app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial15Gestures/app/build.gradle.kts -------------------------------------------------------------------------------- /ComposeTutorial15Gestures/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial15Gestures/app/proguard-rules.pro -------------------------------------------------------------------------------- /ComposeTutorial15Gestures/app/src/androidTest/java/com/codingambitions/composetutorial15gestures/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial15Gestures/app/src/androidTest/java/com/codingambitions/composetutorial15gestures/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /ComposeTutorial15Gestures/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial15Gestures/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /ComposeTutorial15Gestures/app/src/main/java/com/codingambitions/composetutorial15gestures/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial15Gestures/app/src/main/java/com/codingambitions/composetutorial15gestures/MainActivity.kt -------------------------------------------------------------------------------- /ComposeTutorial15Gestures/app/src/main/java/com/codingambitions/composetutorial15gestures/TestData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial15Gestures/app/src/main/java/com/codingambitions/composetutorial15gestures/TestData.kt -------------------------------------------------------------------------------- /ComposeTutorial15Gestures/app/src/main/java/com/codingambitions/composetutorial15gestures/ui/theme/Color.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial15Gestures/app/src/main/java/com/codingambitions/composetutorial15gestures/ui/theme/Color.kt -------------------------------------------------------------------------------- /ComposeTutorial15Gestures/app/src/main/java/com/codingambitions/composetutorial15gestures/ui/theme/Theme.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial15Gestures/app/src/main/java/com/codingambitions/composetutorial15gestures/ui/theme/Theme.kt -------------------------------------------------------------------------------- /ComposeTutorial15Gestures/app/src/main/java/com/codingambitions/composetutorial15gestures/ui/theme/Type.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial15Gestures/app/src/main/java/com/codingambitions/composetutorial15gestures/ui/theme/Type.kt -------------------------------------------------------------------------------- /ComposeTutorial15Gestures/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial15Gestures/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /ComposeTutorial15Gestures/app/src/main/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial15Gestures/app/src/main/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /ComposeTutorial15Gestures/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial15Gestures/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /ComposeTutorial15Gestures/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial15Gestures/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /ComposeTutorial15Gestures/app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial15Gestures/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /ComposeTutorial15Gestures/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial15Gestures/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /ComposeTutorial15Gestures/app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial15Gestures/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /ComposeTutorial15Gestures/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial15Gestures/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /ComposeTutorial15Gestures/app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial15Gestures/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /ComposeTutorial15Gestures/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial15Gestures/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /ComposeTutorial15Gestures/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial15Gestures/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /ComposeTutorial15Gestures/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial15Gestures/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /ComposeTutorial15Gestures/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial15Gestures/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /ComposeTutorial15Gestures/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial15Gestures/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /ComposeTutorial15Gestures/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial15Gestures/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /ComposeTutorial15Gestures/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial15Gestures/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /ComposeTutorial15Gestures/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial15Gestures/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /ComposeTutorial15Gestures/app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial15Gestures/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /ComposeTutorial15Gestures/app/src/main/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial15Gestures/app/src/main/res/xml/data_extraction_rules.xml -------------------------------------------------------------------------------- /ComposeTutorial15Gestures/app/src/test/java/com/codingambitions/composetutorial15gestures/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial15Gestures/app/src/test/java/com/codingambitions/composetutorial15gestures/ExampleUnitTest.kt -------------------------------------------------------------------------------- /ComposeTutorial15Gestures/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial15Gestures/build.gradle.kts -------------------------------------------------------------------------------- /ComposeTutorial15Gestures/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial15Gestures/gradle.properties -------------------------------------------------------------------------------- /ComposeTutorial15Gestures/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial15Gestures/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /ComposeTutorial15Gestures/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial15Gestures/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /ComposeTutorial15Gestures/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial15Gestures/gradlew -------------------------------------------------------------------------------- /ComposeTutorial15Gestures/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial15Gestures/gradlew.bat -------------------------------------------------------------------------------- /ComposeTutorial15Gestures/local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial15Gestures/local.properties -------------------------------------------------------------------------------- /ComposeTutorial15Gestures/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial15Gestures/settings.gradle.kts -------------------------------------------------------------------------------- /ComposeTutorial16GesturesPart2/app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial16GesturesPart2/app/build.gradle.kts -------------------------------------------------------------------------------- /ComposeTutorial16GesturesPart2/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial16GesturesPart2/app/proguard-rules.pro -------------------------------------------------------------------------------- /ComposeTutorial16GesturesPart2/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial16GesturesPart2/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /ComposeTutorial16GesturesPart2/app/src/main/java/com/codingambitions/composetutorial16gesturespart2/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial16GesturesPart2/app/src/main/java/com/codingambitions/composetutorial16gesturespart2/MainActivity.kt -------------------------------------------------------------------------------- /ComposeTutorial16GesturesPart2/app/src/main/java/com/codingambitions/composetutorial16gesturespart2/TestData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial16GesturesPart2/app/src/main/java/com/codingambitions/composetutorial16gesturespart2/TestData.kt -------------------------------------------------------------------------------- /ComposeTutorial16GesturesPart2/app/src/main/java/com/codingambitions/composetutorial16gesturespart2/ui/theme/Color.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial16GesturesPart2/app/src/main/java/com/codingambitions/composetutorial16gesturespart2/ui/theme/Color.kt -------------------------------------------------------------------------------- /ComposeTutorial16GesturesPart2/app/src/main/java/com/codingambitions/composetutorial16gesturespart2/ui/theme/Theme.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial16GesturesPart2/app/src/main/java/com/codingambitions/composetutorial16gesturespart2/ui/theme/Theme.kt -------------------------------------------------------------------------------- /ComposeTutorial16GesturesPart2/app/src/main/java/com/codingambitions/composetutorial16gesturespart2/ui/theme/Type.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial16GesturesPart2/app/src/main/java/com/codingambitions/composetutorial16gesturespart2/ui/theme/Type.kt -------------------------------------------------------------------------------- /ComposeTutorial16GesturesPart2/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial16GesturesPart2/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /ComposeTutorial16GesturesPart2/app/src/main/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial16GesturesPart2/app/src/main/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /ComposeTutorial16GesturesPart2/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial16GesturesPart2/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /ComposeTutorial16GesturesPart2/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial16GesturesPart2/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /ComposeTutorial16GesturesPart2/app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial16GesturesPart2/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /ComposeTutorial16GesturesPart2/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial16GesturesPart2/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /ComposeTutorial16GesturesPart2/app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial16GesturesPart2/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /ComposeTutorial16GesturesPart2/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial16GesturesPart2/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /ComposeTutorial16GesturesPart2/app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial16GesturesPart2/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /ComposeTutorial16GesturesPart2/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial16GesturesPart2/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /ComposeTutorial16GesturesPart2/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial16GesturesPart2/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /ComposeTutorial16GesturesPart2/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial16GesturesPart2/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /ComposeTutorial16GesturesPart2/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial16GesturesPart2/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /ComposeTutorial16GesturesPart2/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial16GesturesPart2/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /ComposeTutorial16GesturesPart2/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial16GesturesPart2/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /ComposeTutorial16GesturesPart2/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial16GesturesPart2/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /ComposeTutorial16GesturesPart2/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial16GesturesPart2/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /ComposeTutorial16GesturesPart2/app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial16GesturesPart2/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /ComposeTutorial16GesturesPart2/app/src/main/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial16GesturesPart2/app/src/main/res/xml/data_extraction_rules.xml -------------------------------------------------------------------------------- /ComposeTutorial16GesturesPart2/app/src/test/java/com/codingambitions/composetutorial16gesturespart2/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial16GesturesPart2/app/src/test/java/com/codingambitions/composetutorial16gesturespart2/ExampleUnitTest.kt -------------------------------------------------------------------------------- /ComposeTutorial16GesturesPart2/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial16GesturesPart2/build.gradle.kts -------------------------------------------------------------------------------- /ComposeTutorial16GesturesPart2/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial16GesturesPart2/gradle.properties -------------------------------------------------------------------------------- /ComposeTutorial16GesturesPart2/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial16GesturesPart2/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /ComposeTutorial16GesturesPart2/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial16GesturesPart2/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /ComposeTutorial16GesturesPart2/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial16GesturesPart2/gradlew -------------------------------------------------------------------------------- /ComposeTutorial16GesturesPart2/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial16GesturesPart2/gradlew.bat -------------------------------------------------------------------------------- /ComposeTutorial16GesturesPart2/local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial16GesturesPart2/local.properties -------------------------------------------------------------------------------- /ComposeTutorial16GesturesPart2/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial16GesturesPart2/settings.gradle.kts -------------------------------------------------------------------------------- /ComposeTutorial17Animations/app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial17Animations/app/build.gradle.kts -------------------------------------------------------------------------------- /ComposeTutorial17Animations/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial17Animations/app/proguard-rules.pro -------------------------------------------------------------------------------- /ComposeTutorial17Animations/app/src/androidTest/java/com/codingambitions/composetutorial17animations/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial17Animations/app/src/androidTest/java/com/codingambitions/composetutorial17animations/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /ComposeTutorial17Animations/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial17Animations/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /ComposeTutorial17Animations/app/src/main/java/com/codingambitions/composetutorial17animations/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial17Animations/app/src/main/java/com/codingambitions/composetutorial17animations/MainActivity.kt -------------------------------------------------------------------------------- /ComposeTutorial17Animations/app/src/main/java/com/codingambitions/composetutorial17animations/TestData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial17Animations/app/src/main/java/com/codingambitions/composetutorial17animations/TestData.kt -------------------------------------------------------------------------------- /ComposeTutorial17Animations/app/src/main/java/com/codingambitions/composetutorial17animations/ui/theme/Color.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial17Animations/app/src/main/java/com/codingambitions/composetutorial17animations/ui/theme/Color.kt -------------------------------------------------------------------------------- /ComposeTutorial17Animations/app/src/main/java/com/codingambitions/composetutorial17animations/ui/theme/Theme.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial17Animations/app/src/main/java/com/codingambitions/composetutorial17animations/ui/theme/Theme.kt -------------------------------------------------------------------------------- /ComposeTutorial17Animations/app/src/main/java/com/codingambitions/composetutorial17animations/ui/theme/Type.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial17Animations/app/src/main/java/com/codingambitions/composetutorial17animations/ui/theme/Type.kt -------------------------------------------------------------------------------- /ComposeTutorial17Animations/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial17Animations/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /ComposeTutorial17Animations/app/src/main/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial17Animations/app/src/main/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /ComposeTutorial17Animations/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial17Animations/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /ComposeTutorial17Animations/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial17Animations/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /ComposeTutorial17Animations/app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial17Animations/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /ComposeTutorial17Animations/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial17Animations/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /ComposeTutorial17Animations/app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial17Animations/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /ComposeTutorial17Animations/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial17Animations/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /ComposeTutorial17Animations/app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial17Animations/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /ComposeTutorial17Animations/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial17Animations/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /ComposeTutorial17Animations/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial17Animations/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /ComposeTutorial17Animations/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial17Animations/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /ComposeTutorial17Animations/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial17Animations/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /ComposeTutorial17Animations/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial17Animations/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /ComposeTutorial17Animations/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial17Animations/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /ComposeTutorial17Animations/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial17Animations/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /ComposeTutorial17Animations/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial17Animations/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /ComposeTutorial17Animations/app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial17Animations/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /ComposeTutorial17Animations/app/src/main/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial17Animations/app/src/main/res/xml/data_extraction_rules.xml -------------------------------------------------------------------------------- /ComposeTutorial17Animations/app/src/test/java/com/codingambitions/composetutorial17animations/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial17Animations/app/src/test/java/com/codingambitions/composetutorial17animations/ExampleUnitTest.kt -------------------------------------------------------------------------------- /ComposeTutorial17Animations/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial17Animations/build.gradle.kts -------------------------------------------------------------------------------- /ComposeTutorial17Animations/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial17Animations/gradle.properties -------------------------------------------------------------------------------- /ComposeTutorial17Animations/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial17Animations/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /ComposeTutorial17Animations/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial17Animations/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /ComposeTutorial17Animations/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial17Animations/gradlew -------------------------------------------------------------------------------- /ComposeTutorial17Animations/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial17Animations/gradlew.bat -------------------------------------------------------------------------------- /ComposeTutorial17Animations/local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial17Animations/local.properties -------------------------------------------------------------------------------- /ComposeTutorial17Animations/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/ComposeTutorial17Animations/settings.gradle.kts -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunildhiman90/JetpackComposeTutorials/HEAD/README.md --------------------------------------------------------------------------------