Hi guys! I have problem with endless recomposition...
# multiplatform
i
Hi guys! I have problem with endless recompositions in iOS for simple Composables:
Copy code
var 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?