I'm looking for Navigation Architecture component and all examples i've seen are about single Activity app with integration of android bottom menu, so i would like to know if this component can be useful for my situation. My app look like: A SplashActivity that download some data, and if is all ok, launch Main activity. A MainActivity with a custom bottom navigation that allow user to navigate to 3 different sections of app (A,B,C), and inside each section user can navigate deeper iside section itself:
section A: FragmentAOne -> FragmentATwo -> FragmentAThree
section B: FragmentBOne -> FragmentBTwo
section C: FragmenCOne -> FragmentCTwo -> FragmentCThree
and from some of that fragment in some case user can open Another activity that show a fullscreen webview.
Now, i need that each section is independent from others (each fragment should have its backstack), so user can be inside FragmentAThree, navigate to FragmentCOne and come back to section A and still stay inside FragmentAThree.
Can Navigation Architecture component handle this strange situation?