When overscroll up the transition between inline and large navigation is not smooth and there is a short flickering
struct ContentView: View {
var body: some View {
NavigationView {
ScrollView {
Text("Content")
.frame(width: 100, height: 300)
}.navigationBarTitle(Text("Title"), displayMode: .large)
}
}
}