InnerShadowSample
@Composable
fun InnerShadowSample() {
Box(Modifier.size(100.dp, 100.dp).innerShadow(RectangleShape, Shadow(12.dp)))
}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].
@Composable
fun InnerShadowSample() {
Box(Modifier.size(100.dp, 100.dp).innerShadow(RectangleShape, Shadow(12.dp)))
}