androidx.navigation.fragment.compose
Navigation with Fragments support destinations written as Fragments. This artifacts builds upon that base to allow you to add destinations written purely in Compose to your navigation graph without rewriting your entire navigation structure.
It does this by wrapping each destination written in Compose in its own Fragment instance, using reflection to call your @Composable
function.
Classes
ComposableFragment |
This class provides a |
ComposableFragmentNavigator |
This Navigator intercepts the inflation of |
ComposableNavHostFragment |
A |
Top-level properties summary
ProvidableCompositionLocal<Fragment> |
The CompositionLocal containing the containing |
Top-level properties
LocalFragment
val LocalFragment: ProvidableCompositionLocal<Fragment>
The CompositionLocal containing the containing Fragment
. This is sett by default for composables created within a ComposableFragment
.