How do you manage navigation in a Compose app? I t...
# compose
m
How do you manage navigation in a Compose app? I think I can make startActivity and setResult work, but tends to be quite difficult.
i
With
observeAsState()
on the result, you should just automatically recompose with a result once it is available
❤️ 1