NavigationDestination
enum NavigationDestination : Hashable
This enums include all the view which are used in the app. The cases takes the respective params for the view to passed the data between the views.
-
Declaration
Swift
case homeView
-
Declaration
Swift
case passiveFaceCaptureView([UInt8], String, String, TypeView)
-
Declaration
Swift
case activeFaceCaptureView([UInt8], String, TypeView)
-
Declaration
Swift
case QRScannerView(TypeView)
-
Declaration
Swift
case personalDetailsView([String : String], Data)
-
Declaration
Swift
case genrateQRFormView
-
Declaration
Swift
case settingView(LicenseInfo)
-
Declaration
Swift
case clearDataView([String : String])
-
Declaration
Swift
case preScanningForPassiveFaceCaptureView([UInt8], TypeView, String)
-
Declaration
Swift
case preScanningForActiveFaceCaptureView([UInt8], TypeView, String)
-
Declaration
Swift
case qrDetailsView([UInt8])
-
Declaration
Swift
case settingInformationView(LicenseInfo, Bool)
-
Declaration
Swift
case genrateAndVerifySensePrintToggleView(Bool, FaceCaptureSettings)
-
Declaration
Swift
case cameraSettingInfoView(String, String)
-
This is the view builder which maps the enums and the view we want to naviagate to.
Declaration
Swift
@ViewBuilder var view: some View { get }