iOS Swift - SwiftUI Layout
Given this SwiftUI code, what will happen when the content height exceeds the screen height?
ScrollView {
VStack {
ForEach(0..<50) { i in
Text("Item \(i)")
}
}
}