The owner aggregate view that manages the transition.
The progress of the transition, ranging from 0.0 to 1.0.
The source view from which the transition starts.
The current state of the transition.
The target view to which the transition ends.
Executes the transition between the source and target views.
The owner aggregate view.
Optionalsource: IHosannaView<ViewState>The source view.
Optionaltarget: IHosannaView<ViewState>The target view.
Whether the transition should be animated. Defaults to true.
Whether to remove the source view when the transition is complete. Defaults to true.
Represents a simple transition for an aggregate view. This transition immediately completes without any animation.
Remarks
This class extends the
AggregateViewTransitionand overrides thebeginandtransitionWithoutAnimationmethods to provide a simple transition that completes instantly.Example