PasswordDialog
struct PasswordDialog : View
-
Dialog is active or not
Declaration
Swift
@Binding var isActive: Bool { get nonmutating set } -
Password textfield
Declaration
Swift
@State var textField: String { get nonmutating set } -
Indicates if there is an error
Declaration
Swift
@Binding var isError: Bool { get nonmutating set } -
To dismiss the view
Declaration
Swift
@Environment var presentationMode: Binding<PresentationMode> { get } -
Button listener
Declaration
Swift
var onTapButton: (String) -> Void -
Declaration
Swift
struct BackgroundImageForEnterPass : View -
Declaration
Swift
var body: some View { get } -
Back button for dismissing the password dialog box
See moreDeclaration
Swift
struct PasswordDialogDismiss : View