What is the equivalent of textarea in SwiftUI? Where I could have multiple lines of text input. And specify size of this area? HTML example is here: https://www.w3schools.com/tags/tryit.asp?filename=tryhtml_textarea I have searched a lot without any luck.
I have tried to use TextField in SwiftUI, but if user writes long text, the text goes out of the screen.
TextField("notes")
.background(Color.yellow)
.lineLimit(3)