SenseCryptContentView
public struct SenseCryptContentView : View
A view representing the content of the SenseCrypt SDK offline.
-
A boolean value that indicates whether the splash screen is currently being shown.
Declaration
Swift
@State private var isShowingSplash: Bool { get nonmutating set }
-
A boolean value that indicates whether the content is currently loading.
Declaration
Swift
@State private var isLoading: Bool { get nonmutating set }
-
A boolean value that indicates whether the error dialog is being shown.
Declaration
Swift
@State private var isShownErrorDialog: Bool { get nonmutating set }
-
A boolean value that indicates whether the error dialog with retry option is being shown.
Declaration
Swift
@State private var isShownErrorDialogWithRetry: Bool { get nonmutating set }
-
An error object that contains the error code and message.
Declaration
Swift
@State private var error: ErrorType { get nonmutating set }
-
Declaration
Swift
public init()
-
Declaration
Swift
var content: some View { get }
-
Function to retry the initialization of the SDK.
Declaration
Swift
private func retryInitialization()
-
Declaration
Swift
public var body: some View { get }