Last active
June 9, 2022 09:15
-
-
Save meyusufdemirci/6fdd954582a737b1a80848240b17ccee to your computer and use it in GitHub Desktop.
What is New in SwiftUI, WWDC 22 Article
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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