I want to dismiss a page like Instagram when we swipe right in swiftUI

96 Views Asked by At

when I dissmiss the page, I have to stick my finger against the edge of the screen, I would like to be able to dissmiss anywhere on the screen like on Instagram

extension UINavigationController: UIGestureRecognizerDelegate {
    override open func viewDidLoad() {
        super.viewDidLoad()
        interactivePopGestureRecognizer?.delegate = self
    }

    public func gestureRecognizerShouldBegin(_ gestureRecognizer: UIGestureRecognizer) -> Bool {
        return viewControllers.count > 1
    }
}
0

There are 0 best solutions below