CircledIconView

@MainActor
public struct CircledIconView : View

A Circled Icon View for Step Indicator

  • icon for the step indicator

    Declaration

    Swift

    @MainActor
    public var image: Image
  • width for step indicator

    Declaration

    Swift

    @MainActor
    public var width: CGFloat
  • color for step indicator

    Declaration

    Swift

    @MainActor
    public var color: Color?
  • stroke color for step indicator

    Declaration

    Swift

    @MainActor
    public var strokeColor: Color
  • initiazes image , width , color and strokeColor

    Declaration

    Swift

    @MainActor
    public init(image: Image, width: CGFloat, color: Color? = nil, strokeColor: Color = Colors.blue(.lightSky).rawValue)
  • provides the content and behavior of this view.

    Declaration

    Swift

    @MainActor
    public var body: some View { get }