I'm struggle building a Navigation, like on the image below, with the Android Navigation Component.
I need a "Login Flow", check if the user is logged in and then navigate to the main part of the app (also clearing the backstack). The main part contains a BottomNavigationView with three tabs. But if I click on a settings icon on the toolbar, I also want to display a fullscreen SettingsFragment.
Did I need two NavHostFragments with separate navigation graphs? If yes, how can I combine them and also have a proper backNavigation?
Any ideas how realize a navigation like this with the android navigation components?


First of all you can check Conditional Navigation
Second of all, you can do it with only one
nav_graph. But you need only oneActivityfor this. After that, you can check in it like this:But your starter fragment should be
MainFragmentand notLoginFragment