FluidBackgroundStyle

public enum FluidBackgroundStyle

Enumerations indicating a background style.

  • Blurred background.

    Declaration

    Swift

    case blur(radius: CGFloat, color: UIColor, alpha: CGFloat)

    Parameters

    radius

    The blur radius value.

    color

    The tint color value.

    alpha

    The tint alpha value.

  • Dimmed background.

    Declaration

    Swift

    case dim(color: UIColor)

    Parameters

    color

    The dimming color value.

  • No background.

    Declaration

    Swift

    case none
  • Undocumented

    Declaration

    Swift

    var index: Int { get }
  • Declaration

    Swift

    public static func == (lhs: FluidBackgroundStyle, rhs: FluidBackgroundStyle) -> Bool
  • Declaration

    Swift

    public var description: String { get }