I know that we can create a List in vertical SwiftUI like this,
struct ContentView : View { var body: some View { NavigationView { Li
Checkout ZStack based example here
Grid(0...100) { _ in Rectangle() .foregroundColor(.blue) }