faceCaptureErrorDialog

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

    var buttonTitle: String
  • The title of the cancel button.

    Declaration

    Swift

    var cancelButtonTitle: String
  • A binding indicating whether the dialog is active or not.

    Declaration

    Swift

    @Binding
    var isActive: Bool { get nonmutating set }
  • The title of the dialog.

    Declaration

    Swift

    var title: String
  • The subtitle of the dialog.

    Declaration

    Swift

    var titileDesciption: String
  • The name of the first image.

    Declaration

    Swift

    var image1: String
  • The name of the second image.

    Declaration

    Swift

    var image2: String
  • The name of the third image.

    Declaration

    Swift

    var image3: String
  • The description of the first image.

    Declaration

    Swift

    var image1Description: String
  • The description of the second image.

    Declaration

    Swift

    var image2Description: String
  • The description of the third image.

    Declaration

    Swift

    var image3Description: String
  • A closure to be called when the close button is tapped.

    Declaration

    Swift

    var onTapCloseButton: () -> Void
  • A closure to be called when the retry button is tapped.

    Declaration

    Swift

    var onTapRetryButton: () -> Void
  • Declaration

    Swift

    var body: some View { get }