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