Without seeing your Code it's quite hard to tell where the issue is.
However the following Code is working for me
struct ContentView: View {
var body: some View {
NavigationView {
FirstView()
}
}
}
struct FirstView: View {
var body: some View {
NavigationLink(destination: SecondView()
) {
Text("Go to Second View")
}
.navigationBarTitle("FirstView", displayMode: .inline)
}
}
struct SecondView: View {
var body: some View {
NavigationLink(destination: ThirdView().navigationBarBackButtonHidden(true)
) {
Text("Go to Third View")
}
.navigationBarTitle("SecondView", displayMode: .inline)
}
}
struct ThirdView: View {
var body: some View {
Text("Third View without Back Button")
.navigationBarTitle("Third View", displayMode: .inline)
}
}