NavigationLink is the only API I'm aware of for doing navigation controller push transitions in watchOS. However, a NavigationLink appears to add some default styling that I'd like to disable. For example, it appears to add padding to your content view in a ScrollView, and whether in a ScrollView or not, it sets a default platter background color and some corner rounding.
The Button API does the same thing, but you can override this with .buttonStyle(PlainButtonStyle()) to disable styling and provide your own styling entirely.
Is there a way to disable the styling of NavigationLink in watchOS, similar to how you can disable the Button styling with PlainButtonStyle?
The Button API does the same thing, but you can override this with .buttonStyle(PlainButtonStyle()) to disable styling and provide your own styling entirely.
Is there a way to disable the styling of NavigationLink in watchOS, similar to how you can disable the Button styling with PlainButtonStyle?