rememberLauncherForActivityResult { result -> ... }
?
Something like:
Copy code
navController.navigateForResult(...) { result ->
...
}
I am exploring ways to pass a result back to the calling Navbackstackentry but I see the existing solution still depends on creating unique keys to identify the returned result. Similar to the previous ActivityResult API where one had to define a unique RequestCode.
Has anyone made any open source work in regards to this?