-
- All Implemented Interfaces:
-
androidx.compose.animation.AnimatedVisibilityScope,com.ramcosta.composedestinations.scope.NavGraphBuilderDestinationScope
@Immutable() public interface AnimatedNavGraphBuilderDestinationScope<T extends Object> implements NavGraphBuilderDestinationScope<T>, AnimatedVisibilityScope
Like NavGraphBuilderDestinationScope but also AnimatedVisibilityScope so that you can use this Scope as a receiver of your Animated and Default styled Composable
-
-
Method Summary
Modifier and Type Method Description 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 abstract Transition<EnterExitState>getTransition()-
-
Method Detail
-
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
-
getTransition
abstract Transition<EnterExitState> getTransition()
-
-
-
-