SwiftUI 表单中的文本在更改后不换行
Text in SwiftUI Form not wrapping after being changed
我需要在 SwiftUI 表单中显示一些文本,这些文本会根据当前状态发生变化。但是,如果“新”文本比表单首次出现时显示的原始字符串长,则无法正确换行。
在下面的示例中,打开开关会更改显示的文本,但它会被截断而不是换行
struct ContentView: View {
@State var showLongString = false
var body: some View {
Form {
Section {
Text(showLongString ? "This is a string that is too long to fit in one line" : "Hello, World!")
}
Section {
Toggle("Show long string", isOn: $showLongString)
}
}
}
}
我能找到的唯一解决方法是使用 .listRowInsets
并增加尾随插入,这并不理想,并且会根据缩放不同的设备执行不同的操作(即它可能会包裹在 iPhone 12 但不在 iPhone 11/XR) 上,没有进一步增加尾随插图。
这个问题还有其他解决方法吗?
您可以使用 fixedSize
但限制它只能垂直扩展:
Section {
Text(showLongString ? "This is a string that is too long to fit in one line, This is a string that is too long to fit in one line" : "Hello, World!")
.fixedSize(horizontal: false, vertical: true)
}
.id(showLongString)
我需要在 SwiftUI 表单中显示一些文本,这些文本会根据当前状态发生变化。但是,如果“新”文本比表单首次出现时显示的原始字符串长,则无法正确换行。
在下面的示例中,打开开关会更改显示的文本,但它会被截断而不是换行
struct ContentView: View {
@State var showLongString = false
var body: some View {
Form {
Section {
Text(showLongString ? "This is a string that is too long to fit in one line" : "Hello, World!")
}
Section {
Toggle("Show long string", isOn: $showLongString)
}
}
}
}
我能找到的唯一解决方法是使用 .listRowInsets
并增加尾随插入,这并不理想,并且会根据缩放不同的设备执行不同的操作(即它可能会包裹在 iPhone 12 但不在 iPhone 11/XR) 上,没有进一步增加尾随插图。
这个问题还有其他解决方法吗?
您可以使用 fixedSize
但限制它只能垂直扩展:
Section {
Text(showLongString ? "This is a string that is too long to fit in one line, This is a string that is too long to fit in one line" : "Hello, World!")
.fixedSize(horizontal: false, vertical: true)
}
.id(showLongString)