Any idea on how to pass down a result to the previ...
# compose
c
Any idea on how to pass down a result to the previous screen using Nav2, with Nav3 we can directly modify the previous entry right.
w
You actually do the same thing with Nav2, too. Access the previous entry, write some key-value, and then in the composable for the previous destination, read, remove, and act on the key-value.
c
Alright, will try it out