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.

This seems to be fixed now, however I've noticed that the view doesn't transition properly between large and inline unless the content is a certain width. Is this documented anywhere?

For the above example if you scroll up, you will get this:

But if you change it slightly, and add the following to the Text

.frame(maxWidth: .infinity)

It works properly:

ScrollView clipping nav title in iOS 26?
 
 
Q