VenueLabelStyle

public class VenueLabelStyle
extension VenueLabelStyle: NativeBase
extension VenueLabelStyle: Hashable

Represents a style of the label.

  • Creates a custom label style with specific parameters.

    Declaration

    Swift

    public init(fillColor: UIColor, outlineColor: UIColor, outlineWidth: Float, maxFont: Int32)

    Parameters

    fillColor

    The fill color.

    outlineColor

    The outline color.

    outlineWidth

    The width color.

    maxFont

    The max font.

  • The maximum font size for this label style.

    Declaration

    Swift

    public var maxFont: Int32 { get }
  • The fill color for this label style.

    Declaration

    Swift

    public var fillColor: UIColor { get }
  • The outline color. Defaults to nil if an outline color has not been set for this label style.

    Declaration

    Swift

    public var outlineColor: UIColor? { get }
  • The outline width for this label style.

    Declaration

    Swift

    public var outlineWidth: Float { get }