How can I give shadow beautifully like the second ...
# compose
c
How can I give shadow beautifully like the second one?
Copy code
Column(
        modifier = Modifier
            .width(209.3.dp)
            .height(136.7.dp)
            .clip(radiusShape)
            .border(width = 0.7.dp, color = Color.Gray06, shape = radiusShape)
            .background(Color.White)
            .shadow(elevation = 1.7.dp, shape = radiusShape)
            .clickable {
                onClick("refId")
            },
        verticalArrangement = Arrangement.Center,
        horizontalAlignment = Alignment.CenterHorizontally
    )