On change in textField value will change in SwiftUI
Saurabh Chavan

Saurabh Chavan @100rabhcsmc

About: React Native,iOS, SwiftUI 💻🥣🛌🔄

Location:
Pune,Maharashtra
Joined:
Jun 26, 2020

On change in textField value will change in SwiftUI

Publish Date: Mar 23 '23
0 0

When we change in the textField then value whatever get then this value will change in swift

the code are as follow:

import SwiftUI

struct User{
    var firstName = "Saurabh"
    var lastName = "Chavan"
}

struct ContentView: View {
    @State private var Users = User()
    var body: some View{
        VStack{
             Text("\(Users.firstName)  \(Users.lastName)")

            TextField("First Name", text: $Users.firstName)

            TextField("Last Name", text: $Users.lastName)
        }
    }
}
Enter fullscreen mode Exit fullscreen mode

Output:

Image description

Comments 0 total

    Add comment