TextButtonSample
@Composable
fun TextButtonSample() {
TextButton(onClick = { /* Do something! */ }) { Text("Text Button") }
}Text buttons are typically used for less-pronounced actions, including those located in dialogs and cards.
RevenueCat
Add subscriptions to your apps in minutes
@Composable
fun TextButtonSample() {
TextButton(onClick = { /* Do something! */ }) { Text("Text Button") }
}