Skip to content

Instantly share code, notes, and snippets.

@laurenchen0631
laurenchen0631 / CustomTextField.swift
Last active June 22, 2021 18:25
Swiftui CustomTextField
// customized text field based on @Anshuman Singh https://stackoverflow.com/questions/58311022/autofocus-textfield-programmatically-in-swiftui
import SwiftUI
struct CustomTextField: UIViewRepresentable {
class Coordinator: NSObject, UITextFieldDelegate {
@Binding var textInput: String
@Binding var nextResponder: Bool?
@Binding var isResponder: Bool?
var maxLength: Int?