🌈 Create new beautiful Compose Gradients with our new wesite ->

Scrim

Kotlin
@Composable
fun ScrimSample() {
    Box(modifier = Modifier.size(width = 280.dp, height = 180.dp)) {
        Text("Content behind the modal", modifier = Modifier.align(Alignment.Center))
        Scrim(
            contentDescription = "Dismiss",
            onClick = {},
            alpha = { 0.45f },
        )
    }
}