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

OutlinedButton

OutlinedButton preview
Kotlin
@Composable
fun SimpleOutlinedButtonSample() {
    OutlinedButton(
        onClick = { /* Do something */ },
        label = { Text("Outlined Button") },
        modifier = Modifier.fillMaxWidth(),
    )
}