Changing Navigation Link Style

Viewed 28

I am fairly new to macOS development, especially using swiftUI. coming from a UIKit background, I find it hard to change the navigation link style (I only use a simple text)

here's an example

NavigationLink {
                Text("Ini Blue")
 } label: {
                Text("Ini papa")
 }

and here's what I got: The result of the code

i want it to be a simple text because I wanted to add some other properties, are there an API or a way to solve it? thanks

0 Answers
Related