Skip to content

Instantly share code, notes, and snippets.

@gtokman
Last active September 24, 2021 00:56
Show Gist options
  • Save gtokman/d47c93701121492c0b101b5d9b120f3e to your computer and use it in GitHub Desktop.
Save gtokman/d47c93701121492c0b101b5d9b120f3e to your computer and use it in GitHub Desktop.
NavigationView {
List {
ForEach(businesses) { business in
Text(business.name)
}
}
.listStyle(.plain)
.navigationTitle(Text("Boston"))
.refreshable {
// do something
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment