-
@Immutable() public interface NavGraphBuilderDestinationScope<T extends Object>
-
-
Method Summary
Modifier and Type Method Description abstract DestinationsNavigatordestinationsNavigator(NavController navController)DestinationsNavigator useful to navigate from this destination abstract TypedDestinationSpec<T>getDestination()DestinationSpec related to this scope abstract NavBackStackEntrygetNavBackStackEntry()NavBackStackEntry of the current destination abstract TgetNavArgs()Class holding the navigation arguments passed to this destination or Unit if the destination has no arguments -
-
Method Detail
-
destinationsNavigator
abstract DestinationsNavigator destinationsNavigator(NavController navController)
DestinationsNavigator useful to navigate from this destination
-
getDestination
abstract TypedDestinationSpec<T> getDestination()
DestinationSpec related to this scope
-
getNavBackStackEntry
abstract NavBackStackEntry getNavBackStackEntry()
NavBackStackEntry of the current destination
-
getNavArgs
abstract T getNavArgs()
Class holding the navigation arguments passed to this destination or Unit if the destination has no arguments
-
-
-
-