Compose Modifier

dropShadow

Draws a drop shadow behind the rest of the content with the geometry specified by the given shape and the shadow properties defined by the [Shadow].

DropShadowSample

@Composable
fun DropShadowSample() {
    Box(Modifier.size(100.dp, 100.dp).dropShadow(RectangleShape, Shadow(12.dp)))
}