fix: lock compose material3 to 1.8.2 due to buggy bottom sheet

This commit is contained in:
Cilly Leang 2025-11-25 20:52:23 +11:00
parent 42f06ebefa
commit d4425f5b12
Signed by: cilly
GPG key ID: 6500251E087653C9

View file

@ -48,7 +48,8 @@ kotlin {
implementation(compose.foundation) implementation(compose.foundation)
implementation(compose.material) implementation(compose.material)
implementation(compose.materialIconsExtended) // TODO: move to symbols 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.ui)
implementation(compose.components.resources) implementation(compose.components.resources)
implementation(compose.components.uiToolingPreview) implementation(compose.components.uiToolingPreview)