ArgoPositionType

public enum ArgoPositionType

Undocumented

  • By default a view is positioned relatively. This means a view is positioned according to the normal flow of the layout, and then offset relative to that position based on the values of top, right, bottom, and left. The offset does not affect the position of any sibling or parent elements.

    Declaration

    Swift

    case relative
  • When positioned absolutely a view doesn’t take part in the normal layout flow. It is instead laid out independent of its siblings. The position is determined based on the top, right, bottom, and left values.

    Declaration

    Swift

    case absolute