ScrollView(.vertical) {
LazyVStack {
ForEach(0..<700, id: \.self) { index in
Section {
Text("Content \(index)")
.font(.headline)
.padding()
} header: {
Text("Section \(index)")
.font(.title)
.padding()
}
}
}
}
iOS: 18.5, iPhone 15 Pro Max, Xcode 16.4