Writing a Macos app. The following code just puts up a simple navigation list.
everthing is fine with single clicking the Row links and displaying the Detail row
If you double click the NavigationLink, another window opens with only the Text view on it.
During my testing, there was a button to dismiss the view on the detail window, and if clicked, the original window would close leaving this stripped down view open.
I have to assume that no one else is seeing this since I cannot see anything from other people.
Does anyone have any ideas what would cause this to happen?
import SwiftUI
struct ContentView: View {
var body: some View {
HStack {
NavigationView {
List(0..<100) { row in
NavigationLink(destination: Text("Detail \(row)")) {
Text("Row \(row)")
}
}
}
}
}
}
@guci0 I put in the sizes and got the same results. Since you are seeing the little window, you are experiencing the same issue
@TheTwoNotes I put in the following with the same results. 1) with both gestures, only the single displays the print, the double click gives me the extra window opening as before. 2) with only the count: 2 in , on a double click I get the same extra window opening with the Text Row displayed...not what should happen
.onTapGesture(count: 1) {
print("tapped single \(row)")
}
.onTapGesture(count: 2) {
print("tapped double \(row)")
}