ScrollView clipping nav title in iOS 26?

When using a ScrollView inside some sort of navigation (stack or split view), large navigation titles seem to get clipped to the width of the scroll content for some reason?

Minimal example:

struct ContentView: View {
    var body: some View {
        NavigationStack {
            ScrollView {
                Text("Scroll Content")
            }
            .navigationTitle("Navigation Title")
        }
    }
}

Results in:

Is this a bug in the beta, or has something changed and now I’m doing things wrong?

This must be a bug as it doesn't make sense to be a feature. As a workaround, I would wrap the content in a LazyVStack or something similar like you would normally. Either way, I would file feedback for this.

Also please post the FB number here once you do. Bug Reporting: How and Why? has tips on creating your bug report.

ScrollView clipping nav title in iOS 26?
 
 
Q