gpt4 book ai didi

ios - 使用SwiftUI创建实际表

转载 作者:行者123 更新时间:2023-12-01 16:05:37 26 4
gpt4 key购买 nike

我绝对是Swift-Newbie,我想创建一个2维的实际表。我做了一些垂直列表,但是当我将它们放入HStack时,它们中的文本框并没有真正对齐。我该怎么办,或者这是错误的方法?

谢谢你的帮助!

最佳答案

不确定您的外观如何,但是简单的解决方案可以朝您已经指出的方向发展:

struct ExampleRow: View {
var body: some View {
Text("Example Row")
}
}

struct ContentView: View {
var body: some View {

ZStack {
HStack {
List {
Section(header: Text("Column A")) {
ExampleRow()
ExampleRow()
ExampleRow()
}
}.listStyle(GroupedListStyle())
.disabled(true)

List {
Section(header: Text("Column B")) {
ExampleRow()
ExampleRow()
ExampleRow()
}
}.listStyle(GroupedListStyle())
.disabled(true)
}
Rectangle().fill(Color.gray).opacity(0.4).frame(width: CGFloat(1))
}
}
}

Picture

关于ios - 使用SwiftUI创建实际表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61531271/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com