NavigationTitle limited to 10 characters in child views

Hi, maybe I stumbled on a bug, seems I cannot have more then 10 characters in navigation title in child navigations otherwise it only shows < Back.

Example:
The first scene works fine, it's just a simple Home view

Code Block struct StartView: View {
  var body: some View {
    NavigationView {
      List {
        Section(header: Text("Food")) {
          NavigationLink("Recipes", destination: RecipeView())
        }
      }
      .listStyle(GroupedListStyle())
      .navigationTitle("Home")
    }
  }
}


Having more then 10 display's < Back instead of Recipesssss when navigating to RecipeAddView()
Code Block
struct RecipeView: View {
  var body: some View {
    List {
    }
    .navigationTitle("Recipesssss")
    .toolbar {
      NavigationLink("Add", destination: RecipeAddView())
    }
  }
}


Anyone got same problem? Or I am missing something?

Anyone got same problem? Or I am missing something?

I cannot reproduce the issue with your code shown.
There may be something wrong in the hidden parts of your code, or the issue may happen only on some specific environment.

Can you clarify your testing environment?
NavigationTitle limited to 10 characters in child views
 
 
Q