I can't get a row to be selectable for something other than navigating, if there's also a NavigationLink in the row view. This is no problem with UIKit. Is it impossible because of lack of implementation at present, just a bug, or is it in fact presently possible?
This is probably the simplest snippet that can illustrate the problem.
struct ContentView: View {
var body: some View {
NavigationView {
List {
HStack {
Button("How can I tap over here without transitioning?") { }
NavigationLink( destination: ContentView() ) {
Spacer()
}
}
}
}
}
}