├── app ├── .gitignore ├── src │ ├── main │ │ ├── res │ │ │ ├── values │ │ │ │ ├── strings.xml │ │ │ │ ├── themes.xml │ │ │ │ └── colors.xml │ │ │ ├── drawable │ │ │ │ ├── living_room.png │ │ │ │ ├── wi_fi_icon.xml │ │ │ │ ├── ic_launcher_foreground.xml │ │ │ │ ├── snowflake.xml │ │ │ │ ├── cutlery.xml │ │ │ │ ├── bed.xml │ │ │ │ ├── television.xml │ │ │ │ ├── pawprint.xml │ │ │ │ ├── serving_dish.xml │ │ │ │ ├── android.xml │ │ │ │ ├── breakfast.xml │ │ │ │ └── ic_launcher_background.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 │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ └── xml │ │ │ │ ├── backup_rules.xml │ │ │ │ └── data_extraction_rules.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── samplecomposeapp │ │ │ │ ├── ui_practice │ │ │ │ ├── list │ │ │ │ │ ├── ToolsViewState.kt │ │ │ │ │ ├── model │ │ │ │ │ │ └── Person.kt │ │ │ │ │ ├── ToolsView.kt │ │ │ │ │ ├── repository │ │ │ │ │ │ └── PersonRepository.kt │ │ │ │ │ ├── lazyColumn │ │ │ │ │ │ ├── LazyColumn.kt │ │ │ │ │ │ └── LazyColumnPractice.kt │ │ │ │ │ ├── components │ │ │ │ │ │ └── CustomItem.kt │ │ │ │ │ ├── lazyGrid │ │ │ │ │ │ └── LazyGridDemo.kt │ │ │ │ │ └── ListPractice.kt │ │ │ │ ├── navigation │ │ │ │ │ ├── navgraph │ │ │ │ │ │ ├── NavGraphScreen.kt │ │ │ │ │ │ ├── AuthNavGraph.kt │ │ │ │ │ │ └── HomeNavGraph.kt │ │ │ │ │ ├── Screen.kt │ │ │ │ │ └── screens │ │ │ │ │ │ ├── SignUpScreen.kt │ │ │ │ │ │ ├── DetailScreen.kt │ │ │ │ │ │ ├── LoginScreen.kt │ │ │ │ │ │ └── HomeScreen.kt │ │ │ │ ├── textview │ │ │ │ │ ├── BoxComposable.kt │ │ │ │ │ ├── SubScriptAndSuperScript.kt │ │ │ │ │ ├── TextComposable.kt │ │ │ │ │ └── ExpandableCard.kt │ │ │ │ ├── imageview │ │ │ │ │ └── ImageViewPractice.kt │ │ │ │ ├── buttons │ │ │ │ │ └── GradientButton.kt │ │ │ │ ├── layouts │ │ │ │ │ ├── BoxPractice.kt │ │ │ │ │ ├── FlowLayout.kt │ │ │ │ │ ├── RowColumnDemo.kt │ │ │ │ │ └── Scaffold.kt │ │ │ │ ├── textField │ │ │ │ │ ├── CharacterCountTextField.kt │ │ │ │ │ ├── PasswordInputField.kt │ │ │ │ │ ├── TextFieldCompose.kt │ │ │ │ │ └── GoogleSignUpButton.kt │ │ │ │ ├── windowSizeClass │ │ │ │ │ └── WindowSizeClassDemo.kt │ │ │ │ └── PracticeScreens │ │ │ │ │ └── AssignmentScreen.kt │ │ │ │ ├── ConnectivityObserver.kt │ │ │ │ ├── statemanagement │ │ │ │ ├── number_guess │ │ │ │ │ ├── NumberGuessState.kt │ │ │ │ │ ├── NumberGuessAction.kt │ │ │ │ │ ├── NumberGuessViewModel.kt │ │ │ │ │ └── StateManagementGame.kt │ │ │ │ ├── todo_list_check │ │ │ │ │ ├── TodoListState.kt │ │ │ │ │ ├── TodoListActions.kt │ │ │ │ │ └── TodoListViewModel.kt │ │ │ │ ├── StateHoistingPractice.kt │ │ │ │ └── StatePractice.kt │ │ │ │ ├── ui │ │ │ │ └── theme │ │ │ │ │ ├── Color.kt │ │ │ │ │ ├── Type.kt │ │ │ │ │ └── Theme.kt │ │ │ │ ├── ConnectivityViewModel.kt │ │ │ │ ├── modifiers │ │ │ │ ├── OffsetModifierPractice.kt │ │ │ │ ├── ModifierPractice.kt │ │ │ │ ├── ClickableModifierPractice.kt │ │ │ │ ├── SpacingModifierPractice.kt │ │ │ │ ├── ShapeModifierPractice.kt │ │ │ │ └── FocusManagementPractice.kt │ │ │ │ ├── CoilImageLoading.kt │ │ │ │ └── AndroidConnectivityObserver.kt │ │ └── AndroidManifest.xml │ ├── test │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── samplecomposeapp │ │ │ └── ExampleUnitTest.kt │ └── androidTest │ │ └── java │ │ └── com │ │ └── example │ │ └── samplecomposeapp │ │ └── ExampleInstrumentedTest.kt ├── proguard-rules.pro └── build.gradle.kts ├── .idea ├── .gitignore ├── codeStyles │ ├── codeStyleConfig.xml │ └── Project.xml ├── compiler.xml ├── kotlinc.xml ├── vcs.xml ├── valkyrie_settings.xml ├── migrations.xml ├── misc.xml ├── gradle.xml ├── runConfigurations.xml ├── deploymentTargetSelector.xml └── inspectionProfiles │ └── Project_Default.xml ├── gradle ├── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties └── libs.versions.toml ├── Gemfile ├── fastlane ├── Appfile ├── Pluginfile ├── report.xml ├── README.md └── Fastfile ├── .gitignore ├── settings.gradle.kts ├── .github └── ISSUE_TEMPLATE │ ├── feature_request.md │ └── bug_report.md ├── SECURITY.md ├── CONTRIBUTING.md ├── gradle.properties ├── gradlew.bat ├── README.md ├── CODE_OF_CONDUCT.md ├── gradlew └── Gemfile.lock /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | SampleComposeApp 3 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SardarKhan299/PracticeComposeComponents/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /app/src/main/res/drawable/living_room.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SardarKhan299/PracticeComposeComponents/HEAD/app/src/main/res/drawable/living_room.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SardarKhan299/PracticeComposeComponents/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SardarKhan299/PracticeComposeComponents/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SardarKhan299/PracticeComposeComponents/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SardarKhan299/PracticeComposeComponents/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SardarKhan299/PracticeComposeComponents/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SardarKhan299/PracticeComposeComponents/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SardarKhan299/PracticeComposeComponents/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SardarKhan299/PracticeComposeComponents/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SardarKhan299/PracticeComposeComponents/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SardarKhan299/PracticeComposeComponents/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gem "fastlane" 4 | 5 | plugins_path = File.join(File.dirname(__FILE__), '.', 'Pluginfile') 6 | eval_gemfile(plugins_path) if File.exist?(plugins_path) 7 | -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |