i could not find anything in official docs on comp...
# compose
a
i could not find anything in official docs on compose navigation on nested navigation, especially on typesafe navigation, if there is any downsides to reusing routes in multiple navigation stacks. use case is bottom tabs:
Copy code
navigation<HomeTabGraph>(...){
  composable<HomeTab>{..}
  composable<AnotherScreen> {...}
}
navigation<HomeTabGraph>(...){
  composable<HomeTab>{..}
  composable<AnotherScreen> {...}
}
it seems to work. maybe its ok?