Tomáš
07/22/2020, 6:16 PMColumn(Modifier.padding(innerPadding).fillMaxSize()) {
var textState by state { TextFieldValue("test") }
TextField(
value = textState,
onValueChange = { textState = it },
modifier = Modifier.fillMaxWidth().preferredHeight(240.dp)
)
}
But the “test” text is not editable, as soon as I try to type something - nothing happens and then I get leak from leak canary 😞 Any ideas?David Mcrae Jr
07/23/2020, 1:44 PMsavedInstanceState
in place of state
and mine is editableTomáš
07/27/2020, 10:04 AM