How to change the theme color with SwiftUI?

Viewed 624

I need to change the title of all the navigationlinks to a different color other than blue, like a custom green. Don't know where to begin.

Example

1 Answers

Use accent color like the following

demo

NavigationView {
    // content here
}.accentColor(Color.green)
Related