Skip to content

Instantly share code, notes, and snippets.

@sharkdeng
Created October 13, 2020 04:07
Show Gist options
  • Save sharkdeng/1547c7d4452303fbc1f26fee07b1a76a to your computer and use it in GitHub Desktop.
Save sharkdeng/1547c7d4452303fbc1f26fee07b1a76a to your computer and use it in GitHub Desktop.
import SwiftUI
struct ContentView: View {
var body: some View {
NavigationView {
NavigationLink(destination: Text("Second View")) {
Text("Hello, World!")
}
.navigationBarTitle("Navigation")
}
}
}
struct ContentView_Previews: PreviewProvider {
static var previews: some View {
ContentView()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment