In my app I'm using navController to switch between fragments. I have a problem with this scenario:
- ItineraryFragment is opened (at the top of the screen it is a horizontal recyclerview with some days and below the recyclerView it is another fragment); the fragment contained is filled with the attractions corresponding to the first day of the list
- When another day from the recyclerView is clicked, the fragment changes its content with the attractions corresponding to that day
Is it possible to create this behavior using only navigation components? Now the nested fragment is put into a FrameLayout using fragmentTransaction but I'd like to use only navController.