GenerateAndVerifySensePrintToggle
@MainActor
struct GenerateAndVerifySensePrintToggle : View
This view is show all the details related to mobile Lic and device imfo with app version and SDK version,It also displays cust ID
-
If the view is to show sdk information and other information
Declaration
Swift
@State @MainActor var isCurrentToggleGenration: Bool { get nonmutating set }
-
Toggle value for active and passive face capture process
Declaration
Swift
@State @MainActor var isPassive: Bool { get nonmutating set }
-
Toggle value for basic liveness enable value
Declaration
Swift
@State @MainActor var isAntiSpoofingLivenessOn: Bool { get nonmutating set }
-
Toggle value for camera oriantation value
Declaration
Swift
@State @MainActor var isFrontCamera: Bool { get nonmutating set }
-
String value that changed the text Depends on if the user has selected the setting view and clicked on generation or verification
Declaration
Swift
@State @MainActor var SensePrintProcessText: String { get nonmutating set }
-
Declaration
Swift
@State @MainActor private var showToolTip: Bool { get nonmutating set }
-
Instance of the FaceCaptureSettings class to store and change the stored setting values.
Declaration
Swift
@State @MainActor var faceCaptureSettings: FaceCaptureSettings { get nonmutating set }
-
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 }
-
Presentation mode environment variable
Declaration
Swift
@Environment @MainActor var presentationMode: Binding<PresentationMode> { get }
-
Declaration
Swift
@State @MainActor var titleForSettingInfo: String { get nonmutating set }
-
Declaration
Swift
@State @MainActor var descriptionForSettingInfo: String { get nonmutating set }
-
Declaration
Swift
@MainActor var body: some View { get }
-
Custom toggle button for all the camera related setting
See moreDeclaration
Swift
@MainActor struct CustomToggleForCameraSetting : View