为什么你认为它应该是 List in List... 这样的视觉表示可以仅使用一个列表生成,并且具有原生的外观和感觉。
这只是一个演示(没有 UI 调整和显示/隐藏部分的逻辑,这超出了主题),但想法应该很清楚
import SwiftUI
struct ItemRow: View {
let category: Bool
let text: String
init(_ text: String, isCategory: Bool = false) {
self.category = isCategory
self.text = text
}
var body: some View {
HStack {
Circle().stroke() // this can be custom control
.frame(width: 20, height: 20)
.onTapGesture {
// handle tap here
}
if category {
Text(self.text).bold()
} else {
Text(self.text)
}
}
}
}
struct TestNestedLists: View {
var body: some View {
List { // next pattern easily wrapped with ForEach
ItemRow("Category", isCategory: true) // this can be section's header
Section {
ItemRow("Item 1")
ItemRow("Item 2")
ItemRow("Item 3")
}.padding(.leading, 20)
}
}
}
struct TestNestedLists_Previews: PreviewProvider {
static var previews: some View {
TestNestedLists()
}
}