-
@Immutable() public interface DestinationScopeWithNoDependencies<T extends Object>Scope where a destination screen will be called in.
This is used when we still have no dependencies
-
-
Method Summary
Modifier and Type Method Description abstract TypedDestinationSpec<T>getDestination()DestinationSpec related to this scope abstract NavBackStackEntrygetNavBackStackEntry()NavBackStackEntry of the current destination abstract NavControllergetNavController()NavController related to the NavHost abstract DestinationsNavigatorgetDestinationsNavigator()DestinationsNavigator useful to navigate from this destination abstract TgetNavArgs()Class holding the navigation arguments passed to this destination or Unit if the destination has no arguments -
-
Method Detail
-
getDestination
abstract TypedDestinationSpec<T> getDestination()
DestinationSpec related to this scope
-
getNavBackStackEntry
abstract NavBackStackEntry getNavBackStackEntry()
NavBackStackEntry of the current destination
-
getNavController
abstract NavController getNavController()
NavController related to the NavHost
-
getDestinationsNavigator
abstract DestinationsNavigator getDestinationsNavigator()
DestinationsNavigator useful to navigate from this destination
-
getNavArgs
abstract T getNavArgs()
Class holding the navigation arguments passed to this destination or Unit if the destination has no arguments
-
-
-
-