-
public final class ManualComposableCallsBuilderKt
-
-
Method Summary
Modifier and Type Method Description final static <T extends Any> Unitcomposable(ManualComposableCallsBuilder $self, TypedDestinationSpec<T> destination, Function1<AnimatedDestinationScope<T>, Unit> content)Registers content lambda as the responsible for calling the Composable correspondent to destination. final static <T extends Any> UnitdialogComposable(ManualComposableCallsBuilder $self, TypedDestinationSpec<T> destination, Function1<DestinationScope<T>, Unit> content)Registers content lambda as the responsible for calling the Composable correspondent to destination. -
-
Method Detail
-
composable
final static <T extends Any> Unit composable(ManualComposableCallsBuilder $self, TypedDestinationSpec<T> destination, Function1<AnimatedDestinationScope<T>, Unit> content)
Registers content lambda as the responsible for calling the Composable correspondent to destination.
When destination is navigated to, content will be called with the correct AnimatedDestinationScope containing the navigation arguments, the back stack entry and navigators.
-
dialogComposable
final static <T extends Any> Unit dialogComposable(ManualComposableCallsBuilder $self, TypedDestinationSpec<T> destination, Function1<DestinationScope<T>, Unit> content)
Registers content lambda as the responsible for calling the Composable correspondent to destination.
When destination is navigated to, content will be called with the correct DestinationScope containing the navigation arguments, the back stack entry and navigators.
-
-
-
-