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

TextButton

Text buttons are typically used for less-pronounced actions, including those located in dialogs and cards.

TextButton social preview

TextButtonSample

@Composable
fun TextButtonSample() {
    TextButton(onClick = { /* Do something! */ }) { Text("Text Button") }
}

Last updated: