MwxPresentation

public enum MwxPresentation

Enum for the possible presentations supported by the current implementation for view model coordinators.

  • Define a coordinator presentation as the root view for your application window.

    Declaration

    Swift

    case root
  • tab

    Define a coordinator presentation as a tab item to embed it to current tab view context

    Declaration

    Swift

    case tab
  • Define a coordinator presentation as a navigation link to push the view over current context.

    Declaration

    Swift

    case link
  • Define a coordinator presentation as a sheet to present the view modally over current context.

    Declaration

    Swift

    case sheet