Created
September 23, 2021 22:44
-
-
Save gtokman/9c9c4cf455bdf884ad3cf54627c718d9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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