Can I pass a class annotated with `@Model` into a ...
# compose
a
Can I pass a class annotated with
@Model
into a Composable without having it recompose when something changes?
a
If you read a property of an
@Model
object in a composable, that composable will recompose if the model object changes. If you simply pass the model object to another composable without reading its properties, it will not.