iOS Swift - SwiftUI Layout
Given this code:
What will the user see?
ScrollView(.horizontal) {
LazyHStack {
ForEach(0..<2, id: \.self) { i in
Text("Number \(i)")
}
}
}What will the user see?
