HomeView
@available(iOS 16.0, *)
@MainActor
struct HomeView : View
HomeView
- Description: This struct is used to display the home and entry page of the application.
-
This variable represents the type of screen to be displayed
Declaration
Swift
@State @MainActor var screenType: TypeView { get nonmutating set }
-
This array stores the QR bytes
Declaration
Swift
@State @MainActor var qrBytes: [UInt8] { get nonmutating set }
-
This string stores the password
Declaration
Swift
@MainActor var password: String
-
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 }
-
Declaration
Swift
@MainActor var faceCaptureSettings: FaceCaptureSettings
-
This struct is used to display the background image of the main page
See moreDeclaration
Swift
@MainActor struct BackgroundImageSections : View
-
Declaration
Swift
@MainActor var body: some View { get }