ScrollView(.vertical) { // <-- or ScrollView(.horizontal) VStack(spacing: 20) { ForEach(0..<20) { Text("Row ($0)") } } }