Compose Modifier

innerShadow

Draws an inner shadow on top of the rest of the content with the geometry specified by the given shape and the shadow properties defined by the [Shadow].

InnerShadowSample

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