OutlinedButtonSample
@Sampled
@Composable
fun OutlinedButtonSample() {
OutlinedButton(onClick = { /* Do something! */ }) { Text("Outlined Button") }
}Material Design outlined button Outlined buttons are medium-emphasis buttons.
@Sampled
@Composable
fun OutlinedButtonSample() {
OutlinedButton(onClick = { /* Do something! */ }) { Text("Outlined Button") }
}