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") }
}