Heestand XYZ
Heestand XYZ

Reputation: 2221

SwiftUI - List Navigation not working on an iPhone

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.

Upvotes: 4

Views: 529

Answers (1)

simibac
simibac

Reputation: 8570

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.

Upvotes: 3

Related Questions