Does MutableState.value supposed to be assigned on...
# compose
p
Does MutableState.value supposed to be assigned only in UI thread?
🚫 3
z
One of the features of the snapshot state system is that it makes it safe (or safer) to share mutable data across threads. So you can definitely write to them from multiple threads.
2