Is there a way to remember a property change of a deeply nested object
Is there a way to trigger recomposition when a single property of an object changes in compose? I know remember { mutableStateOf(x) } won’t work as the object reference remains the same. I know this could be solved by using the .copy() method to update the property and the object reference, however, the property is only ever modified inside of the object (in a separate module), but needs to be read outside of it.