jannis
10/06/2022, 1:51 PMvar text by remember { mutableStateOf("") }
TextField(
value = text,
onValueChange = { text = it }
)
Button(onClick = { text = "A different text." }) {
Text("paste")
}
Zach Klippenstein (he/him) [MOD]
10/06/2022, 5:28 PMjannis
10/06/2022, 7:15 PM