Jetpack Compose Navigation: How to handle backstack in multi-graph app?
I have two graphs in my app. One is AuthNavGraph which contains auth-related screens like login and signup, and the other is MainNavGraphwhich contains BottomNavigationViewwith top-level destinations. Here are my destinations :
interface RubiBrandsNavigationDestination {
val route: String
}
sealed class Destination(
override val route: String,
val arguments: List = emptyList()
) : RubiBrandsNavigationDestination {
object LoginDestination : Destination(
route =...