The UI structure of my App currently looks like this
• Activity (ComposeView with an AndroidView holding the container for the fragment)
◦ Fragment with ViewPager and TopAppBar (in XML)
The Activity uses a ModalNavigationDrawer and in the content i use the AndroidView for the container of the Fragment.
Everything works good so far but i can not swipe between the fragments in the viewpager because the ModalNavigationDrawer in the activity catches all swipe events.
Is there any possibility to also forward the swipe to the fragment with the viewpager?