ScrollView animation of title

When I using a ScrollView the title isn't smoothly animated up to the inline version when I scroll. Just by changing the ScrollView to a List makes it scroll as it should. Is this a known issue ?

Code Block
struct ContentView: View {
  var body: some View {
    NavigationView {
      ScrollView {
        Text("Hello, world!").padding()
      }
      .navigationTitle("Title")
    }
  }
}