Using bottom app bar as nested navigation in jetpack compse

Viewed 474

I am stuck in a problem in jetpack compose navigation. I do have a case where I have a full page screen like login/signup and other settings pages and on the home page, I need a bottom navigation bar. But from time to time I also need to move to a full-page screen like settings and all from the home page. How can I achieve it? does anyone have a rough idea or links to a solution or sample code?

1 Answers

Use two NavHost. One is placed in the root for the full page screens, other is placed inside home page Scaffold.

Related