我想创建一个属性列表(不使用列表视图)。每个属性都是一个HStack,其中包含两个文本,即名称和值。我希望名称文本始终具有整个HStack宽度的30%,而值文本则要使用其余水平空间。每个属性的高度取决于内容。
我尝试通过以下观点来实现这一目标:

struct FatherList: View {
    let attributes: Attributes

    init(_ attributes: Attributes) {
        self.attributes = attributes
    }

    var body: some View {
        VStack(spacing: CGFloat.spacing.medium) {
            ForEach(
                attributes,
                id: \.name,
                content: ChildView.init
            )
        }
    }
}
其中包含以下ChildView:
struct ChildView: View {
    let listItem: Product.Attribute

    init(_ attribute: Product.Attribute) {
        self.attribute = attribute
    }

    var body: some View {
        GeometryReader { geometry in
            HStack(alignment: .top, spacing: 0) {
                Text(attribute.name)
                    .bold()
                    .frame(width: 0.3 * geometry.size.width)
                    .background(Color.yellow)
                Text(attribute.value)
            }
            .fixedSize(horizontal: false, vertical: true)
            .background(Color.red)
        }
    }
}
我得到的结果是这样的:
ios - 如何在SwiftUI中的ForEach中嵌入的HStack中设置相对宽度?-LMLPHP
子视图重叠,这不是我想要的,我希望子视图扩展并互相跟随。我正在使用geometryReader完成上述的相对宽度。我究竟做错了什么?

最佳答案

这是可能解决方案的演示。经过Xcode 11.4 / iOS 13.4测试
ios - 如何在SwiftUI中的ForEach中嵌入的HStack中设置相对宽度?-LMLPHP
注意:ViewHeightKey来自this another my solution

struct ChildView: View {
    let attribute: Attribute

    @State private var fitHeight = CGFloat.zero

    var body: some View {
        GeometryReader { geometry in
            HStack(alignment: .top, spacing: 0) {
                Text(self.attribute.name)
                    .bold()
                    .frame(width: 0.3 * geometry.size.width, alignment: .leading)
                    .background(Color.yellow)
                Text(self.attribute.value)
                    .fixedSize(horizontal: false, vertical: true)
                    .frame(width: 0.7 * geometry.size.width, alignment: .leading)
            }
            .background(Color.red)
            .background(GeometryReader {
                Color.clear.preference(key: ViewHeightKey.self,
                    value: $0.frame(in: .local).size.height) })
        }
        .onPreferenceChange(ViewHeightKey.self) { self.fitHeight = $0 }
        .frame(height: fitHeight)
    }
}

关于ios - 如何在SwiftUI中的ForEach中嵌入的HStack中设置相对宽度?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/62992686/

10-12 02:45