当第一行“满”时,我想拉伸我的HStack

时间:2019-08-20 18:55:06

标签: swiftui

enter image description here

我正尝试为我的应用创建一个关键字列表,如下图所示。我想在第一行“满”时拉伸我的HStack ...

最好的方法是什么?

这是我的代码:

        HStack(alignment: .top) {
        Rectangle()
            .frame(width: 65, height: 65)
            .cornerRadius(5)
            .foregroundColor(.orange)

        VStack(alignment: .leading) {
            Text(exercice.name)
            HStack(alignment: .top) {
                ForEach(exercice.muscles ?? [], id: \.self) { muscle in
                    MuscleBadge(muscle: muscle)
                }
            }
        }
    }

enter image description here

0 个答案:

没有答案