I'm using `SnapshotStateMap<String, Any>` . ...
# compose
l
I'm using
SnapshotStateMap<String, Any>
. Is it possible to perform a recompose based on the change of a specific key?
z
Any reads of the map should get change notifications. That means you'll get change notifications for every change, even if you only read one key. If you want finer grained notifications, you could make the values mutable states.
l
okay thanks for the information @Zach Klippenstein (he/him) [MOD]