Enumerations

The following enumerations are available globally.

  • Color palette helper accessing colors and it’s variations.

    See more

    Declaration

    Swift

    @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
    public enum Colors
  • Options for stepper view alignments

    case top
    case center
    case bottoom
    
    See more

    Declaration

    Swift

    @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
    public enum StepperAlignment : String, CaseIterable
  • Options for displaying step indications can be either Circle or Imageor custom(View)

    case circle(Color, Width)op
    case image(Image, Width)
    case custom(Content)
    
    See more

    Declaration

    Swift

    @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
    public enum StepperIndicationType<Content> where Content : View
  • Options for customizing line with either defaults or custom width and Color

    case defaults
    case custom(CGFloat, Color)
    
    See more

    Declaration

    Swift

    @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
    public enum StepperLineOptions
  • Options for aligns the step indicator either in vertical or horizontal

    case vertical
    case horizontal
    
    See more

    Declaration

    Swift

    public enum StepperMode : String, CaseIterable
  • Options for aligns the step indicator either in pending or completed

    case pending
    case completed
    
    See more

    Declaration

    Swift

    public enum StepLifeCycle : String, CaseIterable