with navigation-compose... what is the proper way ...
# compose
c
with navigation-compose... what is the proper way to structure your nav graph so that a destination can be accessed by several different nav graphs? For example - you're using bottom navigation and each tab is its own nav graph. However, you would like to be able to access a "support" screen destination from all of them.
Copy code
NavHost(...) {
    navigation<Product> {
}