在SwiftUI中,文本区域的等效性是什么?我可以有多行文字输入。并指定这个区域的大小?HTML示例在这里:https://www.w3schools.com/tags/tryit.asp?filename=tryhtml_textarea,我搜索了很多,没有任何运气。
我曾尝试在TextField中使用SwiftUI,但是如果用户写长文本,文本就会离开屏幕。
TextField("notes")
.background(Color.yellow)
.lineLimit(3)
发布于 2020-11-29 21:24:07
TextArea在SwiftUI中的等价物是TextEditor。苹果在2020年中期推出了这款手机。
var body: some View {
TextEditor(text: $profileText)
.foregroundColor(.black)
}
下面是一个更详细描述它的参考:https://www.hackingwithswift.com/quick-start/swiftui/how-to-create-multi-line-editable-text-with-texteditor
https://stackoverflow.com/questions/58705155
复制相似问题