我试图在Form的Section内的Text视图中显示一长串文本,但是在第一行带有椭圆(...)的地方,文本一直被截断。我已经尝试过Text("Text here").lineLimit(10)
和Text("Text here").lineLimit(nil)
,但似乎都没有用。
import SwiftUI
struct NoteInfo: View {
var body: some View {
NavigationView {
Form {
Section {
Text("Hello world we have a very long string that will be truncated here")
.lineLimit(10)
}
}
.listStyle(GroupedListStyle())
.navigationBarTitle(Text("Note Info"), displayMode: .inline)
}
}
}
答案 0 :(得分:4)
这不是错误,请尝试
.fixedSize(水平:false,垂直:true)