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?