TransitionType

public enum TransitionType

Value type, that represents action, that ViewTransition object is performing. For example, PushNavigationTransition is a .show transition type, where PopNavigationTransition is a .hide type.

  • hide: Transition is hiding already shown view
  • show: Transition is showing a new, or previously hidden view.
  • custom: Transition that is custom and is not directly a show or a hide.
  • Undocumented

    Declaration

    Swift

    case hide
  • Undocumented

    Declaration

    Swift

    case show
  • Undocumented

    Declaration

    Swift

    case custom