How to create grid of square items (for example like in iOS Photo Library) with SwiftUI?
I tried this approach but it doesn\'t work:
var body: some
Checkout ZStack based example here
Grid(0...100) { _ in Rectangle() .foregroundColor(.blue) }