Hi there, I have a navigation graph where the star...
# navigation-architecture-component
e
Hi there, I have a navigation graph where the start fragment is a list of menu items. I use a bottomsheetfragment so the user can create a new menu and when the user creates a new menu he or she should be navigated to the menuEdit fragment. Thats no problem until here. but when the user navigates back the menu fragment should appear an not the menus list fragment. I’ve tried it with deeplinking but with no luck. Any hints?
a
You can create an action from
menu_edit
screen to
menu_home
with `popUpTo`and attribute.
e
Hmm ok, I’ll give that a try. Thanks