I have navigated to a new view with NavigationLink
and I want to pop back to where I was programatically. Is it yet possible in swiftUI? I know for the modal presentation we could use the .isPresented
environment value but how about navigation?
You can really simply create custom back button. Only two lines code 🔥
@Environment(\.presentationMode) var presentationMode
self.presentationMode.wrappedValue.dismiss()
Example:
import SwiftUI
struct FirstView: View {
@State var showSecondView = false
var body: some View {
NavigationLink(destination: SecondView(),isActive : self.$showSecondView){
Text("Push to Second View")
}
}
}
struct SecondView : View{
@Environment(\.presentationMode) var presentationMode
var body : some View {
Button(action:{ self.presentationMode.wrappedValue.dismiss() }){
Text("Go Back")
}
}
}
Yes you can now programmatically pop a NavigationLink View using the following code:
import SwiftUI
struct MainViewer: View {
@State var showView = false
var body: some View {
NavigationLink(destination: DestView(showView: self.$showView),
isActive: self.$showView) {
Text("Push View")
}
}
}
struct DestView: View {
@Binding var showView: Bool
var body: some View {
Button(action: {self.showView = false}) {
Text("Pop Screen")
}
}
}
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