Unable to navigate back with dynamically generated NavigationLinks

I have these NavigationLinks generated like so:

Code Block
NavigationView {
VStack {
ForEach(listObject) { listObject in
   HStack{
NavigationLink(destination: ListObjView()){
     Text("Nav")
      }.id(listObj.id)
     }
  }
}
}

When I access the ListObjView(), I'm unable to navigate back to home view. Is there anything that causes this?

When I access the ListObjView(), I'm unable to navigate back to home view. Is there anything that causes this?

There may be something in the hidden parts of your code causing this.
I cannot reproduce the issue with your code shown. Please show enough code to reproduce.
Unable to navigate back with dynamically generated NavigationLinks
 
 
Q