Scotty
Scotty

Reputation: 39

How to change the theme color with SwiftUI?

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

Upvotes: 3

Views: 1058

Answers (1)

Asperi
Asperi

Reputation: 257711

Use accent color like the following

demo

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

Upvotes: 4

Related Questions