Skip to content

Instantly share code, notes, and snippets.

@meyusufdemirci
Last active June 9, 2022 09:15
Show Gist options
  • Save meyusufdemirci/6fdd954582a737b1a80848240b17ccee to your computer and use it in GitHub Desktop.
Save meyusufdemirci/6fdd954582a737b1a80848240b17ccee to your computer and use it in GitHub Desktop.
What is New in SwiftUI, WWDC 22 Article
@State var textFieldText: String = ""
var body: some View {
TextField("I am just a text field", text: $textFieldText, axis: .vertical)
.lineLimit(...2)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment