Skip to content

Instantly share code, notes, and snippets.

@gahntpo
Last active June 21, 2020 08:11
Show Gist options
  • Save gahntpo/f4d0bfcc02cc7f1beca89988e1e14a14 to your computer and use it in GitHub Desktop.
Save gahntpo/f4d0bfcc02cc7f1beca89988e1e14a14 to your computer and use it in GitHub Desktop.
using NavigationController to switch between tabs
import SwiftUI
struct FirstDetailView: View {
@EnvironmentObject var nav: NavigationController
var body: some View {
VStack {
Text("show me the details")
Button(action: {
self.nav.selection = 1
}) {
Text("get me to second section")
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment