iOS Swift - SwiftUI Layout
Identify the error in this SwiftUI grid code:
LazyVGrid(rows: [GridItem(.fixed(100))]) {
Text("One")
Text("Two")
Text("Three")
}