iOS Swift - SwiftUI Layout
Given this code:
How many rows and columns will be visible?
LazyHGrid(rows: [GridItem(.fixed(40)), GridItem(.fixed(40))]) {
ForEach(0..<3) { i in
Text("Row \(i)")
}
}How many rows and columns will be visible?
