ClearDataView

@MainActor
struct ClearDataView : View

If the mask id is not empty during the generation of the QR code, this view will be shown with user information and face is not required to see the information. This is a sense print reader.

  • Binding variable for the clearInfoData dictionary

    Declaration

    Swift

    @State
    @MainActor
    var clearInfoData: [String : String] { get nonmutating set }
  • Grid item for the clear data component

    Declaration

    Swift

    @MainActor
    let columns: [GridItem]
  • This EnvironmentObject navigationStore give access to all the view we want to navigate to and from It can be used to pop and push the view in the stack.

    Declaration

    Swift

    @EnvironmentObject
    @MainActor
    private var navigationStore: NavigationStackController { get }
  • The main page background image

    See more

    Declaration

    Swift

    @MainActor
    struct BackgroundImageSections : View
  • Declaration

    Swift

    @MainActor
    var body: some View { get }
  • Calculates the max height for the clear data content

    Declaration

    Swift

    @MainActor
    func maxHeightForContent() -> CGFloat

    Return Value

    The maximum height for the clear data content.