StepperIndicationType
@available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
public enum StepperIndicationType<Content> where Content : View
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)
-
alias to
WidthDeclaration
Swift
public typealias Width = CGFloat -
option to customize
CircleindicatorColorandwidthDeclaration
Swift
case circle(Color, Width) -
option to use
imageindicatorDeclaration
Swift
case image(Image, Width) -
option for Animation
Declaration
Swift
case animation(NumberedCircleView) -
option to use custom
Viewas step indicatorDeclaration
Swift
case custom(Content)
StepperIndicationType Enumeration Reference