Deploying 13.5 to simulator and phone back button dissapears

Hi,

We have an ongoing app which targets min 13.5 IOS version. But when I deploy it on the simulator or the phone and when I navigate to new view, the back button suddenly disappears even though I have not set it to do that. It works fine on IOS 14.1. I am using swiftui, swift 5 and Xcode 12.1.

Any help would be appreciated!
I encountered this too when I moved from Xcode 11.x to Xcode 12.

I found that adding a
Code Block
.isDetailLink(false)
modifier to the NavigationLink that links to your destination view resolved the issue for me.
@wavid, Thanks for the reply, I have tried this on 13.5 simulator but couldn't get it worked properly;

Code Block
NavigationLink(destination: AboutUsView(),tag: 4, selection: $selection) {
               
              EmptyView()
            }.isDetailLink(false)


Maybe I am doing something wrong?
Deploying 13.5 to simulator and phone back button dissapears
 
 
Q