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

ChildButton

ChildButton preview
Kotlin
@Composable
fun SimpleChildButtonSample() {
    ChildButton(
        onClick = { /* Do something */ },
        label = {
            Text("Child Button", textAlign = TextAlign.Center, modifier = Modifier.fillMaxWidth())
        },
        modifier = Modifier.fillMaxWidth(),
    )
}