StepperLineOptions

@available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
public enum StepperLineOptions

Options for customizing line with either defaults or custom width and Color

case defaults
case custom(CGFloat, Color)
  • default line option

    Declaration

    Swift

    case defaults
  • custom line option with width and Color

    Declaration

    Swift

    case custom(CGFloat, Color)
  • rounded line options with width , corner radius, completed color and pending color

    Declaration

    Swift

    case rounded(CGFloat, CGFloat, Color, _: Color = Color.gray.opacity(0.5))