我正在尝试在多平台实现中实现一个列表,这是我的实现:
struct ContentView: View {
var body: some View {
List {
Section(header: Text("Header"), footer: Text("Footer")){
ForEach(0..<5){
Text("\($0)")
.tag($0)
}
}
#if os(iOS)
.listStyle(GroupedListStyle())
#endif
}
}
}
但在这一行:
.listStyle(GroupedListStyle())
我收到此错误:
Unexpected platform condition (expected `os`, `arch`, or `swift`)
你们中的任何人都知道解决此错误的方法吗?
我会非常感谢你的帮助