ignus
12/17/2024, 7:52 AMvar text by rememberSaveable { mutableStateOf("Hello") }
TextField(
value = text,
onValueChange = { text = it },
label = { Text("Label") }
)
after first value change inside TextField we have endless recompositions
How can i fix that?