下面的代码在 Android Studio Preview 上运行良好,但在模拟器和真实设备中变成了一个正方形(没有剪裁),甚至是干净的项目和重新构建。
Column(
Modifier.clip(RoundedCornerShape(50))
) {
Box(
modifier = Modifier.width(100.dp).height(100.dp).background(Color.Blue)
) {
}
}
使用
implementation "androidx.compose.foundation:foundation:1.0.0-beta03"
implementation "androidx.compose.foundation:foundation-layout:1.0.0-beta03"
implementation "androidx.compose.runtime:runtime:1.0.0-beta03"
implementation "androidx.compose.runtime:runtime-livedata:1.0.0-beta03"
implementation "androidx.compose.material:material:1.0.0-beta03"
implementation "androidx.compose.material:material:1.0.0-beta03"