SWIFTUI for IOS16 Navigation link stopped working when added ".onTapGesture", how to fix?
I’m using SWIFTUI for IOS16 development. I have a view with a navigation link that used to work great, but now that I have added an onTapGesture, stopped working. This is my code: import SwiftUI import AVKit struct SpecialVideo6: View { let videoURL = Bundle.main.url(forResource: "war", withExtension: "mp4")! @Binding var path: NavigationPath var player: AVPlayer… Read More SWIFTUI for IOS16 Navigation link stopped working when added ".onTapGesture", how to fix?