ArgoAlign

public enum ArgoAlign

Undocumented

  • Undocumented

    Declaration

    Swift

    case auto
  • Align wrapped lines to the start of the container’s cross axis. default

    Declaration

    Swift

    case start
  • Align wrapped lines in the center of the container’s cross axis.

    Declaration

    Swift

    case center
  • end

    Align wrapped lines to the end of the container’s cross axis.

    Declaration

    Swift

    case end
  • Stretch wrapped lines to match the height of the container’s cross axis.

    Declaration

    Swift

    case stretch
  • Evenly space wrapped lines across the container’s main axis, distributing remaining space along a common baseline.

    Declaration

    Swift

    case baseline
  • Evenly space wrapped lines across the container’s main axis, distributing remaining space between the lines.

    Declaration

    Swift

    case between
  • Evenly space wrapped lines across the container’s main axis, distributing remaining space around the lines. Compared to space between using space around will result in space being distributed to the begining of the first lines and end of the last line.

    Declaration

    Swift

    case around