You can do this by adding creating a ZStack and placing an invisible nav link at the bottom:
ZStack {
NavigationLink(destination: DestinationView()) { EmptyView() }.opacity(0.0)
CardView() //This will be the view that you want to display to the user
}