Using mvvm in compose, with Room, If I need to che...
# compose
p
Using mvvm in compose, with Room, If I need to check if a value exists on the database before doing some job. I need to do a dao call to check if exists, but I can't return true to my composable, so, do I need to store a "valueNotExist" in my uistate for each type of value I need to check if exists? It can grow my uistate to a very big one if so. Is that the correct approach?