_uiState.value = uiState.value.copy() don't cause recompose
There is some unresolved situation that happens with my code,
my target is to change the property of an item in the "devices" list (update a boolean),
The change should cause recompose of the view, but that doesn't happen,
In addition, I can see that the item indeed changes with the debugger, but it also causes to add an additional item(an old copy without the included change) to show up in my list.
Is there any idea how I was wrong with the new value assignment?
The ViewModel
private val...