夹在Android Studio中预览工作,但不工作的设备/模拟器

时间:2021-04-07 09:03:50

标签: android-jetpack-compose

下面的代码在 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"

0 个答案:

没有答案