Skip to content

Instantly share code, notes, and snippets.

@hirauchg
Created August 20, 2020 13:32
Show Gist options
  • Save hirauchg/56a5137f738227227181fbb6329a60fe to your computer and use it in GitHub Desktop.
Save hirauchg/56a5137f738227227181fbb6329a60fe to your computer and use it in GitHub Desktop.
カスタムビューのNavigationLinkの実装
struct FirstView: View {
var body: some View {
NavigationView {
NavigationLink(destination: SecondView()) {
VStack {
Image("neko").renderingMode(.original)
Text("ネコ")
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment