Compose Unstyled 2.0 is out! Check the official announcement blog ->
Compose Component

OutlinedButton

Outlined buttons are medium-emphasis buttons.

OutlinedButton social preview

OutlinedButtonSample

@Composable
fun OutlinedButtonSample() {
    OutlinedButton(onClick = { /* Do something! */ }) { Text("Outlined Button") }
}

Last updated: