iOS Swift - SwiftUI Layout
Find the bug in this code snippet:
LazyHGrid(rows: [GridItem(.flexible())]) {
ForEach(0..<3) { i in
Text("Item \(i)")
}
.frame(height: 50)
}