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

TextButton

Material Design text button Buttons help people initiate actions, from sending an email, to sharing a document, to liking a post.

TextButton social preview

TextButtonWithAnimatedShapeSample

@Preview
@Sampled
@Composable
fun TextButtonWithAnimatedShapeSample() {
    TextButton(onClick = {}, shapes = ButtonDefaults.shapes()) { Text("Text Button") }
}

TextButtonSample

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

Content updated: