├── .gitignore ├── .idea ├── .gitignore ├── .name ├── appInsightsSettings.xml ├── artifacts │ └── compose_bottomsheet_material3_desktop.xml ├── codeStyles │ ├── Project.xml │ └── codeStyleConfig.xml ├── compiler.xml ├── deploymentTargetDropDown.xml ├── deploymentTargetSelector.xml ├── gradle.xml ├── inspectionProfiles │ └── Project_Default.xml ├── kotlinc.xml ├── migrations.xml ├── misc.xml └── vcs.xml ├── README.md ├── advanced-bottomsheet-material3 ├── .gitignore ├── build.gradle.kts ├── consumer-rules.pro ├── proguard-rules.pro └── src │ └── androidMain │ ├── AndroidManifest.xml │ └── kotlin │ └── io │ └── morfly │ └── compose │ └── bottomsheet │ └── material3 │ ├── AnchoredDraggable.kt │ ├── AnchoredDraggableExtensions.kt │ ├── BottomSheetDefaults.kt │ ├── BottomSheetScaffold.kt │ └── BottomSheetState.kt ├── androidApp ├── .gitignore ├── build.gradle.kts ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── kotlin │ └── io │ │ └── morfly │ │ └── bottomsheet │ │ └── sample │ │ ├── MainActivity.kt │ │ ├── MenuScreen.kt │ │ ├── Navigation.kt │ │ ├── bottomsheet │ │ ├── CustomDraggableDemoScreen.kt │ │ ├── CustomDraggableSubcomposeDemoScreen.kt │ │ ├── CustomFinalizedDemoScreen.kt │ │ ├── OfficialMaterial3DemoScreen.kt │ │ ├── SheetValue.kt │ │ └── common │ │ │ ├── BottomSheetContent.kt │ │ │ ├── BottomSheetNestedScrollConnection.kt │ │ │ └── MapScreenContent.kt │ │ └── 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 │ ├── raw │ ├── map_style.json │ └── map_style_dark.json │ ├── values │ ├── colors.xml │ ├── strings.xml │ └── themes.xml │ └── xml │ ├── backup_rules.xml │ └── data_extraction_rules.xml ├── demos └── demo_cover.png ├── gradle.properties ├── gradle ├── libs.versions.toml └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── local.defaults.properties └── settings.gradle.kts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morfly/advanced-bottomsheet-compose/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | MultiState-BottomSheet -------------------------------------------------------------------------------- /.idea/appInsightsSettings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morfly/advanced-bottomsheet-compose/HEAD/.idea/appInsightsSettings.xml -------------------------------------------------------------------------------- /.idea/artifacts/compose_bottomsheet_material3_desktop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morfly/advanced-bottomsheet-compose/HEAD/.idea/artifacts/compose_bottomsheet_material3_desktop.xml -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morfly/advanced-bottomsheet-compose/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morfly/advanced-bottomsheet-compose/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morfly/advanced-bottomsheet-compose/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/deploymentTargetDropDown.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morfly/advanced-bottomsheet-compose/HEAD/.idea/deploymentTargetDropDown.xml -------------------------------------------------------------------------------- /.idea/deploymentTargetSelector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morfly/advanced-bottomsheet-compose/HEAD/.idea/deploymentTargetSelector.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morfly/advanced-bottomsheet-compose/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morfly/advanced-bottomsheet-compose/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morfly/advanced-bottomsheet-compose/HEAD/.idea/kotlinc.xml -------------------------------------------------------------------------------- /.idea/migrations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morfly/advanced-bottomsheet-compose/HEAD/.idea/migrations.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morfly/advanced-bottomsheet-compose/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morfly/advanced-bottomsheet-compose/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morfly/advanced-bottomsheet-compose/HEAD/README.md -------------------------------------------------------------------------------- /advanced-bottomsheet-material3/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /advanced-bottomsheet-material3/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morfly/advanced-bottomsheet-compose/HEAD/advanced-bottomsheet-material3/build.gradle.kts -------------------------------------------------------------------------------- /advanced-bottomsheet-material3/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /advanced-bottomsheet-material3/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morfly/advanced-bottomsheet-compose/HEAD/advanced-bottomsheet-material3/proguard-rules.pro -------------------------------------------------------------------------------- /advanced-bottomsheet-material3/src/androidMain/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /advanced-bottomsheet-material3/src/androidMain/kotlin/io/morfly/compose/bottomsheet/material3/AnchoredDraggable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morfly/advanced-bottomsheet-compose/HEAD/advanced-bottomsheet-material3/src/androidMain/kotlin/io/morfly/compose/bottomsheet/material3/AnchoredDraggable.kt -------------------------------------------------------------------------------- /advanced-bottomsheet-material3/src/androidMain/kotlin/io/morfly/compose/bottomsheet/material3/AnchoredDraggableExtensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morfly/advanced-bottomsheet-compose/HEAD/advanced-bottomsheet-material3/src/androidMain/kotlin/io/morfly/compose/bottomsheet/material3/AnchoredDraggableExtensions.kt -------------------------------------------------------------------------------- /advanced-bottomsheet-material3/src/androidMain/kotlin/io/morfly/compose/bottomsheet/material3/BottomSheetDefaults.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morfly/advanced-bottomsheet-compose/HEAD/advanced-bottomsheet-material3/src/androidMain/kotlin/io/morfly/compose/bottomsheet/material3/BottomSheetDefaults.kt -------------------------------------------------------------------------------- /advanced-bottomsheet-material3/src/androidMain/kotlin/io/morfly/compose/bottomsheet/material3/BottomSheetScaffold.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morfly/advanced-bottomsheet-compose/HEAD/advanced-bottomsheet-material3/src/androidMain/kotlin/io/morfly/compose/bottomsheet/material3/BottomSheetScaffold.kt -------------------------------------------------------------------------------- /advanced-bottomsheet-material3/src/androidMain/kotlin/io/morfly/compose/bottomsheet/material3/BottomSheetState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morfly/advanced-bottomsheet-compose/HEAD/advanced-bottomsheet-material3/src/androidMain/kotlin/io/morfly/compose/bottomsheet/material3/BottomSheetState.kt -------------------------------------------------------------------------------- /androidApp/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /androidApp/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morfly/advanced-bottomsheet-compose/HEAD/androidApp/build.gradle.kts -------------------------------------------------------------------------------- /androidApp/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morfly/advanced-bottomsheet-compose/HEAD/androidApp/proguard-rules.pro -------------------------------------------------------------------------------- /androidApp/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morfly/advanced-bottomsheet-compose/HEAD/androidApp/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /androidApp/src/main/kotlin/io/morfly/bottomsheet/sample/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morfly/advanced-bottomsheet-compose/HEAD/androidApp/src/main/kotlin/io/morfly/bottomsheet/sample/MainActivity.kt -------------------------------------------------------------------------------- /androidApp/src/main/kotlin/io/morfly/bottomsheet/sample/MenuScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morfly/advanced-bottomsheet-compose/HEAD/androidApp/src/main/kotlin/io/morfly/bottomsheet/sample/MenuScreen.kt -------------------------------------------------------------------------------- /androidApp/src/main/kotlin/io/morfly/bottomsheet/sample/Navigation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morfly/advanced-bottomsheet-compose/HEAD/androidApp/src/main/kotlin/io/morfly/bottomsheet/sample/Navigation.kt -------------------------------------------------------------------------------- /androidApp/src/main/kotlin/io/morfly/bottomsheet/sample/bottomsheet/CustomDraggableDemoScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morfly/advanced-bottomsheet-compose/HEAD/androidApp/src/main/kotlin/io/morfly/bottomsheet/sample/bottomsheet/CustomDraggableDemoScreen.kt -------------------------------------------------------------------------------- /androidApp/src/main/kotlin/io/morfly/bottomsheet/sample/bottomsheet/CustomDraggableSubcomposeDemoScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morfly/advanced-bottomsheet-compose/HEAD/androidApp/src/main/kotlin/io/morfly/bottomsheet/sample/bottomsheet/CustomDraggableSubcomposeDemoScreen.kt -------------------------------------------------------------------------------- /androidApp/src/main/kotlin/io/morfly/bottomsheet/sample/bottomsheet/CustomFinalizedDemoScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morfly/advanced-bottomsheet-compose/HEAD/androidApp/src/main/kotlin/io/morfly/bottomsheet/sample/bottomsheet/CustomFinalizedDemoScreen.kt -------------------------------------------------------------------------------- /androidApp/src/main/kotlin/io/morfly/bottomsheet/sample/bottomsheet/OfficialMaterial3DemoScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morfly/advanced-bottomsheet-compose/HEAD/androidApp/src/main/kotlin/io/morfly/bottomsheet/sample/bottomsheet/OfficialMaterial3DemoScreen.kt -------------------------------------------------------------------------------- /androidApp/src/main/kotlin/io/morfly/bottomsheet/sample/bottomsheet/SheetValue.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morfly/advanced-bottomsheet-compose/HEAD/androidApp/src/main/kotlin/io/morfly/bottomsheet/sample/bottomsheet/SheetValue.kt -------------------------------------------------------------------------------- /androidApp/src/main/kotlin/io/morfly/bottomsheet/sample/bottomsheet/common/BottomSheetContent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morfly/advanced-bottomsheet-compose/HEAD/androidApp/src/main/kotlin/io/morfly/bottomsheet/sample/bottomsheet/common/BottomSheetContent.kt -------------------------------------------------------------------------------- /androidApp/src/main/kotlin/io/morfly/bottomsheet/sample/bottomsheet/common/BottomSheetNestedScrollConnection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morfly/advanced-bottomsheet-compose/HEAD/androidApp/src/main/kotlin/io/morfly/bottomsheet/sample/bottomsheet/common/BottomSheetNestedScrollConnection.kt -------------------------------------------------------------------------------- /androidApp/src/main/kotlin/io/morfly/bottomsheet/sample/bottomsheet/common/MapScreenContent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morfly/advanced-bottomsheet-compose/HEAD/androidApp/src/main/kotlin/io/morfly/bottomsheet/sample/bottomsheet/common/MapScreenContent.kt -------------------------------------------------------------------------------- /androidApp/src/main/kotlin/io/morfly/bottomsheet/sample/theme/Color.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morfly/advanced-bottomsheet-compose/HEAD/androidApp/src/main/kotlin/io/morfly/bottomsheet/sample/theme/Color.kt -------------------------------------------------------------------------------- /androidApp/src/main/kotlin/io/morfly/bottomsheet/sample/theme/Theme.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morfly/advanced-bottomsheet-compose/HEAD/androidApp/src/main/kotlin/io/morfly/bottomsheet/sample/theme/Theme.kt -------------------------------------------------------------------------------- /androidApp/src/main/kotlin/io/morfly/bottomsheet/sample/theme/Type.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morfly/advanced-bottomsheet-compose/HEAD/androidApp/src/main/kotlin/io/morfly/bottomsheet/sample/theme/Type.kt -------------------------------------------------------------------------------- /androidApp/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morfly/advanced-bottomsheet-compose/HEAD/androidApp/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /androidApp/src/main/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morfly/advanced-bottomsheet-compose/HEAD/androidApp/src/main/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morfly/advanced-bottomsheet-compose/HEAD/androidApp/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morfly/advanced-bottomsheet-compose/HEAD/androidApp/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morfly/advanced-bottomsheet-compose/HEAD/androidApp/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morfly/advanced-bottomsheet-compose/HEAD/androidApp/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morfly/advanced-bottomsheet-compose/HEAD/androidApp/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morfly/advanced-bottomsheet-compose/HEAD/androidApp/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morfly/advanced-bottomsheet-compose/HEAD/androidApp/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morfly/advanced-bottomsheet-compose/HEAD/androidApp/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morfly/advanced-bottomsheet-compose/HEAD/androidApp/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morfly/advanced-bottomsheet-compose/HEAD/androidApp/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morfly/advanced-bottomsheet-compose/HEAD/androidApp/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morfly/advanced-bottomsheet-compose/HEAD/androidApp/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /androidApp/src/main/res/raw/map_style.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /androidApp/src/main/res/raw/map_style_dark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morfly/advanced-bottomsheet-compose/HEAD/androidApp/src/main/res/raw/map_style_dark.json -------------------------------------------------------------------------------- /androidApp/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morfly/advanced-bottomsheet-compose/HEAD/androidApp/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /androidApp/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morfly/advanced-bottomsheet-compose/HEAD/androidApp/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /androidApp/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morfly/advanced-bottomsheet-compose/HEAD/androidApp/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /androidApp/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morfly/advanced-bottomsheet-compose/HEAD/androidApp/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /androidApp/src/main/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morfly/advanced-bottomsheet-compose/HEAD/androidApp/src/main/res/xml/data_extraction_rules.xml -------------------------------------------------------------------------------- /demos/demo_cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morfly/advanced-bottomsheet-compose/HEAD/demos/demo_cover.png -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morfly/advanced-bottomsheet-compose/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morfly/advanced-bottomsheet-compose/HEAD/gradle/libs.versions.toml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morfly/advanced-bottomsheet-compose/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morfly/advanced-bottomsheet-compose/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morfly/advanced-bottomsheet-compose/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morfly/advanced-bottomsheet-compose/HEAD/gradlew.bat -------------------------------------------------------------------------------- /local.defaults.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morfly/advanced-bottomsheet-compose/HEAD/local.defaults.properties -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Morfly/advanced-bottomsheet-compose/HEAD/settings.gradle.kts --------------------------------------------------------------------------------