From d4425f5b1270a173f8af49c9be4ef62e9c4b311d Mon Sep 17 00:00:00 2001 From: Cilly Leang Date: Tue, 25 Nov 2025 20:52:23 +1100 Subject: [PATCH] fix: lock compose material3 to 1.8.2 due to buggy bottom sheet --- composeApp/build.gradle.kts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/composeApp/build.gradle.kts b/composeApp/build.gradle.kts index c25755b..42ff67c 100644 --- a/composeApp/build.gradle.kts +++ b/composeApp/build.gradle.kts @@ -48,7 +48,8 @@ kotlin { implementation(compose.foundation) implementation(compose.material) implementation(compose.materialIconsExtended) // TODO: move to symbols - implementation(compose.material3) + implementation("org.jetbrains.compose.material3:material3:1.8.2") // TODO: 1.9.0 has buggy bottom sheet behaviour +// implementation(compose.material3) implementation(compose.ui) implementation(compose.components.resources) implementation(compose.components.uiToolingPreview)