I have these NavigationLinks generated like so:
When I access the ListObjView(), I'm unable to navigate back to home view. Is there anything that causes this?
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?