Like this :
@Composable
fun TextEdit(textState: MutableState<String>) {
val text by textState
TextField(onValueChange = {
text = it
}, value = text)
}
Is it optimal for unnecessary recompositions?
Like this :
@Composable
fun TextEdit(textState: MutableState<String>) {
val text by textState
TextField(onValueChange = {
text = it
}, value = text)
}
Is it optimal for unnecessary recompositions?
Copyright © 2021 Jogjafile Inc.
That will still trigger unnecessary recompositions, instead try using the concept of state hoisting where your code should be:
Here is the Best Practice to follow: