Skip to content

Instantly share code, notes, and snippets.

@azamsharp
Created January 14, 2021 03:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save azamsharp/06036a49e552b1ea842b5b2b95df4687 to your computer and use it in GitHub Desktop.
Save azamsharp/06036a49e552b1ea842b5b2b95df4687 to your computer and use it in GitHub Desktop.
NavigationView {
VStack {
List(countries, id: \.self) { country in
Navigator.navigate(.detail(country), content: {
Text(country)
})
}.listStyle(PlainListStyle())
.navigationTitle("Countries")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment