Skip to content

Instantly share code, notes, and snippets.

@hirauchg
Created August 20, 2020 13:10
Show Gist options
  • Save hirauchg/5ae93b93dd088b4dea03dacb11e517b1 to your computer and use it in GitHub Desktop.
Save hirauchg/5ae93b93dd088b4dea03dacb11e517b1 to your computer and use it in GitHub Desktop.
テキストのNavigationLinkの実装
struct FirstView: View {
var body: some View {
NavigationView {
NavigationLink("画面遷移", destination: SecondView())
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment