I am pushing next view with navigation link
NavigationLink(destination: DetailsView()
.navigationBarTitle("")
.navigationBarHidden(true),
isActive: $isDetailsActive) {
EmptyView()
}
I tried the same inside details view too. All I am getting is empty Navigation Bar on Details View and error in terminal:
"changing items while animating can result in a corrupted navigation bar"
The error indicates that you should not push or pop new views on the navigation controller until it’s finished with the last push or pop.
I hide my navigation bar using .onAppear
and .onDisappear
, you can place those modifiers in your parent view or in DetailsView(), look:
NavigationView {
VStack {
Text("Hello World")
}
.navigationBarTitle("")
.navigationBarHidden(self.isNavBarHidden)
.onAppear {
self.isNavBarHidden = true
}.onDisappear {
self.isNavBarHidden = false
}
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With