VerticalAlign

@objc public enum VerticalAlign: Int, Equatable {
    /// Align the banner to the top edge of the placement view
    case top

    /// Align the banner to the bottom edge of the placement view
    case bottom

    /// Align the banner to the center of the placement view
    case center
}

Last updated