Using TextField in Compose, I found that looks like a bug. When I change the textfield value , focus out and in again, onValuseChange method is called even there is no change. this is not What I want, So I write some defending code for this comparing prev value. But I want to know another nice solution. here is my code.
onValueChange = { _inputText ->
if(_inputText.text != countState.value){
}
},