NumberedCircleView

@available(iOS 13.0, OSX 10.15, tvOS 13.0, watchOS 6.0, *)
public struct NumberedCircleView : View

Circle view with text inside for Step Indicator

  • test to be paced inside the circle

    Declaration

    Swift

    public var text: String
  • width of the step indicator

    Declaration

    Swift

    public var width: CGFloat
  • color of the step indicator

    Declaration

    Swift

    public var color: Color
  • initilazes text , width and color

    Declaration

    Swift

    public init(text: String, width: CGFloat = 28.0, color: Color = Colors.teal.rawValue)
  • provides the content and behavior of this view.

    Declaration

    Swift

    public var body: some View { get }