如何在 jetpack compose 中将阴影仅应用于框的一侧或两侧?我想将阴影应用于此列的底部:
Column(
modifier = Modifier
.weight(0.7f)
.fillMaxHeight()
.clip(
shape = RoundedCornerShape(
topStart = 0.dp,
topEnd = 0.dp,
bottomStart = 16.dp,
bottomEnd = 16.dp
)
)
.background(Color.White)
)