SettingView
struct SettingView : 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 var licenseInfo: LicenseInfo { get nonmutating set }
-
State property to control the visibility of the “Copied” text.
Declaration
Swift
@State var showCopiedText: Bool { get nonmutating set }
-
State property to hold the device ID.
Declaration
Swift
@State var deviceId: String { get nonmutating set }
-
State property to track the currently expanded section.
Declaration
Swift
@State private var expandedSection: Int { get nonmutating set }
-
Environment property to manage the presentation mode, used for back navigation.
Declaration
Swift
@Environment var presentationMode: Binding<PresentationMode> { get }
-
Declaration
Swift
var body: some View { get }
-
Accordion section view.
See moreDeclaration
Swift
struct AccordionSection<Content> : View where Content : View
-
Info row view.
See moreDeclaration
Swift
struct InfoRow : View
-
bind license info to UI
Declaration
Swift
func bindLicenseInfo()
-
Declaration
Swift
func bindDeviceId()
-
Setting Label View for Setting View
See moreDeclaration
Swift
struct SettingLabelView : View