I want to have a NavigationLink in my View, but I don’t want it to change it’s tint color (default is blue).
The solution is easy, just add a PlainButtonStyle to the NavigationLink and the font-color remains e.g. black:
NavigationLink(destination: <<YourVariable>> {
[...]
}
.buttonStyle(PlainButtonStyle())Source: StackOverflow