Navigation title also scroll below the content when using scrollview. working fine in iOS 18 and below. one of the UI component is outside the scrollview which is causing the issue.
struct ContentView: View {
var body: some View {
VStack {
Rectangle()
.frame(maxWidth: .infinity)
.frame(height: 60)
.padding(.horizontal)
.padding(.top)
ScrollView {
ForEach(0...5, id: \.self) { _ in
RoundedRectangle(cornerRadius: 10)
.fill(.green)
.frame(maxWidth: .infinity)
.frame(height: 100)
.padding(.horizontal)
}
}
}
.navigationTitle("Hello World")
}
}