🌟

Jetpack Composeのテキストボタン

2022/04/04に公開

https://foso.github.io/Jetpack-Compose-Playground/material/button/

@Composable
fun TextButtonExample() {
    TextButton(onClick = { /* Do something! */ }) {
        Text("I'm a Text Button")
    }
}

Discussion