0

我需要在 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 上),没有进一步增加尾随插图。

这个问题还有其他解决方法吗?

4

1 回答 1

3

您可以使用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)
于 2021-01-12T18:09:40.617 回答