VerticalLineView
@available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
struct VerticalLineView : View
Vertical Line View for Step Indictor
-
binding variable to hold lineHeight
Declaration
Swift
@Binding var lineHeight: CGFloat { get nonmutating set }
-
binding variable to linx x-axis position
Declaration
Swift
@Binding var lineXPosition: CGFloat { get nonmutating set }
-
binding variable to linx y-axis position
Declaration
Swift
@Binding var lineYPosition: CGFloat { get nonmutating set }
-
options for customizing line with either
defaults
or customwidth
andColor
Declaration
Swift
var options: StepperLineOptions
-
tuple holding first and last stepper alignment
Declaration
Swift
var alignments: (StepperAlignment, StepperAlignment)
-
contains list of steps to be rendered next to Indicators
Declaration
Swift
@Environment var steps: [AnyView] { get }
-
provides the content and behavior of this view.
Declaration
Swift
var body: some View { get }