HomeView
@available(iOS 16.0, *)
struct HomeView : View
HomeView
- Description: This struct is used to display the home and entry page of the application.
-
This bool is used to present the passive face capture with camera view
Declaration
Swift
@State var isPresentedPassiveFaceCaptureScreen: Bool { get nonmutating set }
-
This bool is used to present the active face capture with camera view
Declaration
Swift
@State var isPresentedActiveFaceCapture: Bool { get nonmutating set }
-
This bool is used to navigate to the QR screen
Declaration
Swift
@State var navigateToQrScreen: Bool { get nonmutating set }
-
This variable represents the type of screen to be displayed
Declaration
Swift
@State var screenType: TypeView { get nonmutating set }
-
This bool indicates whether the front camera is being used
Declaration
Swift
@State var isFrontCamera: Bool { get nonmutating set }
-
This bool is used to present the pre-scanning tip for passive face capture
Declaration
Swift
@State var isPreScanningTip: Bool { get nonmutating set }
-
This bool is used to present the pre-scanning tip for active face capture
Declaration
Swift
@State var isPreScanningTipForActive: Bool { get nonmutating set }
-
This array stores the QR bytes
Declaration
Swift
@State var qrBytes: [UInt8] { get nonmutating set }
-
This string stores the password
Declaration
Swift
var password: String
-
This struct is used to display the background image of the main page
See moreDeclaration
Swift
struct BackgroundImageSections : View
-
Declaration
Swift
var body: some View { get }