SettingInformationView
@MainActor
struct SettingInformationView : 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
-
State property to hold the license information.
Declaration
Swift
@State @MainActor var licenseInfo: LicenseInfo { get nonmutating set }
-
State property to control the visibility of the “Copied” text.
Declaration
Swift
@State @MainActor var showCopiedText: Bool { get nonmutating set }
-
State property to hold the device ID.
Declaration
Swift
@State @MainActor var deviceId: String { get nonmutating set }
-
State property to track the currently expanded section.
Declaration
Swift
@State @MainActor private var expandedSection: Int { get nonmutating set }
-
If the view is to show sdk information and other info hide and unhide
Declaration
Swift
@State @MainActor var isCurrentViewOthers: Bool { get nonmutating set }
-
Declaration
Swift
@EnvironmentObject @MainActor private var navigationStore: NavigationStackController { get }
-
Declaration
Swift
@MainActor var body: some View { get }
-
Info row view used for displying the details of the app,mobile lic and SDK version .
See moreDeclaration
Swift
@MainActor struct InfoRow : View
-
Info row for other information contains URLs.
See moreDeclaration
Swift
@MainActor struct otherInfoRow : View
-
Bind license info to UI
Declaration
Swift
@MainActor func bindLicenseInfo()
-
Declaration
Swift
@MainActor func bindDeviceId()