Reputation: 2221
I got a NavigationView
, trying to navigate into a NavigationLink
for a second time without luck.
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