4

I got a NavigationView, trying to navigate into a NavigationLink for a second time without luck.

img

So A then B then A works fine. Tho A then A dose not work. The only way to get into A is to go to B first...

NavigationView {
    List {
        ForEach(documents) { document in
            NavigationLink(destination: DocumentView(document: document)) {
                Text(document.name)
            }
        }
    }
}

Testing on an iPhoneX running 13.3. Works fine in the simulator.

Heestand XYZ
  • 1,993
  • 3
  • 19
  • 40

1 Answers1

3

Multiple people including me have experienced this issue with the latest version of iOS (here and here). It seems to be a bug with iOS 13.3.

simibac
  • 7,672
  • 3
  • 36
  • 48