Xcode – Hide chevron/arrow on NavigationLink when displaying a view, SwiftUI
I am trying to remove the chevron that appears on the right of the screen with a navigationLink that contains a view. This is my code below: NavigationView { List { NavigationLink(destination: DynamicList()) { ResultCard() } ... } Other answers…