Skip to content

Instantly share code, notes, and snippets.

@gtokman
Created September 23, 2021 22:44
Show Gist options
  • Save gtokman/9c9c4cf455bdf884ad3cf54627c718d9 to your computer and use it in GitHub Desktop.
Save gtokman/9c9c4cf455bdf884ad3cf54627c718d9 to your computer and use it in GitHub Desktop.
NavigationView {
List {
ForEach(businesses, id: \.id) { business in
Text(business.name)
}
}
.listStyle(.plain)
.navigationTitle(Text("Boston"))
// New tool bar modifier and tool bar item
.toolbar {
ToolbarItem(placement: .navigationBarTrailing) {
Image(systemName: "person")
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment