iOS Swift - SwiftUI Layout
What will be displayed when running this SwiftUI code?
ScrollView {
LazyHStack {
ForEach(1...4, id: \.self) { i in
Text("Label \(i)")
}
}
}