Skip to content

Instantly share code, notes, and snippets.

@gahntpo
Last active June 21, 2020 08:32
Show Gist options
  • Save gahntpo/8317305944f533690575aa7b8078df0f to your computer and use it in GitHub Desktop.
Save gahntpo/8317305944f533690575aa7b8078df0f to your computer and use it in GitHub Desktop.
collapsing navigation stacks in swiftUI
import SwiftUI
struct FirstDetailView: View {
@EnvironmentObject var nav: NavigationController
var body: some View {
VStack {
Text("Whaterever")
Button(action: {
self.nav.detailIsShown = false
}) {
Text("go back to the begining")
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment