@State private var expandingText = "DevTechie.com is a development training website where you can learn to develop apps with practical examples. Our goal is to bring you quality content and our collection is increasing day to day basis."
TextField("Share your feedback", text: $expandingText, axis: .vertical) .textFieldStyle(.roundedBorder)
struct ContentView: View { @State private var expandingText = "DevTechie.com is a development training website where you can learn to develop apps with practical examples. Our goal is to bring you quality content and our collection is increasing day to day basis." var body: some View { VStack { Text("DevTechie") .font(.largeTitle) TextField("Share your feedback", text: $expandingText, axis: .vertical) .textFieldStyle(.roundedBorder) } .padding() } }
struct ContentView: View { @State private var expandingText = "DevTechie.com is a development training website where you can learn to develop apps with practical examples. Our goal is to bring you quality content and our collection is increasing day to day basis." var body: some View { VStack { Text("DevTechie") .font(.largeTitle) TextField("Share your feedback", text: $expandingText, axis: .vertical) .textFieldStyle(.roundedBorder) .lineLimit(3) } .padding() } }
struct ContentView: View { @State private var expandingText = "DevTechie.com is a development training website where you can learn to develop apps with practical examples. Our goal is to bring you quality content and our collection is increasing day to day basis." var body: some View { VStack { Text("DevTechie") .font(.largeTitle) TextField("Share your feedback", text: $expandingText, axis: .vertical) .textFieldStyle(.roundedBorder) .lineLimit(3...5) } .padding() } }
With that we have reached the end of this article. Thank you once again for reading. Subscribe our newsletter at https://www.devtechie.com