I am facing a similar issue to this one <https://s...
# compose-android
r
I am facing a similar issue to this one https://stackoverflow.com/questions/68456471/jetpack-compose-bottom-bar-navigation-not-responding-after-deep-linking > i am basically deeplinking to a Bottom navigation tab. I have 3 tabs. I deep link to second. App opens up with selected second tab and navigating back goes to start destination. Expected. But when you are in second tab if you click home tab nothing happens. Is this a bug still existing?
Comments seems to suggest issue exist for other people as well. The deep link implementation is a standard one following the docs. Nothing fancy there!
Version used: navigationCompose = "2.8.0"
i
Sounds like you don't have a separate nested navigation graph for each tab as you need to have to actually have separate back stacks: https://issuetracker.google.com/issues/228201897#comment2
Make sure to wrap each set of destination in a
navigation
block
r
oh. ok. each tab will have its own graph. The top level destinations will be your tabs and any detail screen will be nested nav graph. Thanks that should work