Reputation: 39
I need to change the title of all the navigationlink
s to a different color other than blue, like a custom green. Don't know where to begin.
Upvotes: 3
Views: 1058
Reputation: 257711
Use accent color like the following
NavigationView {
// content here
}.accentColor(Color.green)
Upvotes: 4