Jetpack Compose 中具有透明背景的阴影

时间:2021-07-26 15:32:22

标签: shadow alpha android-jetpack-compose

谁能解释一下? 以及如何让带有背景颜色的中心矩形消失?

the result here

我尝试了很多方法,但仍然无法理解这里的逻辑。 (不同于 Flutter UI)

Box(
            modifier = Modifier
                .fillMaxWidth()
                .shadow(elevation = 3.dp, shape = RoundedCornerShape(28.dp))
                .background(
                    MaterialTheme.colors.primary.copy(alpha = 0.8f),
                    shape = RoundedCornerShape(28.dp)
                )
                .padding(16.dp)

        )

0 个答案:

没有答案