MimiInstructionStepView

@MainActor
open class MimiInstructionStepView : MimiView

View which displays a vertically aligned list of step-by-step instructions.

  • Individual instruction entry.

    Declaration

    Swift

    public typealias Entry = String
  • Entries to display in the view.

    Declaration

    Swift

    @MainActor
    open var entries: [MimiInstructionStepView.Entry] { get set }
  • Vertical spacing between each entry.

    Declaration

    Swift

    @MainActor
    open var spacing: CGFloat { get }
  • Color of text content.

    Declaration

    Swift

    @MainActor
    open var textColor: UIColor! { get set }
  • Color of the link between instructions.

    Declaration

    Swift

    @MainActor
    open var linkColor: UIColor! { get set }
  • Declaration

    Swift

    @MainActor
    open override func construct(in view: UIView)