faceCaptureErrorDialog
@MainActor
struct faceCaptureErrorDialog : View
This dialog is shown when the liveness failure error happens. This dialog is also used for extreme motion detected error that happens during face scan.
-
The title of the button.
Declaration
Swift
@MainActor var buttonTitle: String
-
The title of the cancel button.
Declaration
Swift
@MainActor var cancelButtonTitle: String
-
A binding indicating whether the dialog is active or not.
Declaration
Swift
@Binding @MainActor var isActive: Bool { get nonmutating set }
-
The title of the dialog.
Declaration
Swift
@MainActor var title: String
-
The subtitle of the dialog.
Declaration
Swift
@MainActor var titileDesciption: String
-
The name of the first image.
Declaration
Swift
@MainActor var image1: String
-
The name of the second image.
Declaration
Swift
@MainActor var image2: String
-
The name of the third image.
Declaration
Swift
@MainActor var image3: String
-
The description of the first image.
Declaration
Swift
@MainActor var image1Description: String
-
The description of the second image.
Declaration
Swift
@MainActor var image2Description: String
-
The description of the third image.
Declaration
Swift
@MainActor var image3Description: String
-
A closure to be called when the close button is tapped.
Declaration
Swift
@MainActor var onTapCloseButton: () -> Void
-
A closure to be called when the retry button is tapped.
Declaration
Swift
@MainActor var onTapRetryButton: () -> Void
-
Declaration
Swift
@MainActor var body: some View { get }