ErrorTextField

struct ErrorTextField : View

Error text field view is used in genrate QR view to show the error in the text field

  • Text field value

    Declaration

    Swift

    @Binding
    var textField: String { get nonmutating set }
  • Placeholder text

    Declaration

    Swift

    var placeholder: String
  • Is focused or not is used to show the placeholder text when user tap on the text field

    Declaration

    Swift

    @FocusState
    private var isFocused: Bool { get nonmutating set }
  • Declaration

    Swift

    var body: some View { get }