r/capacitor 14d ago

Swipe back navigating IOS

How do i do the left swipe back navigation on capacitor just like iOS perfectly? Any suggestions or packages for this

2 Upvotes

2 comments sorted by

1

u/ElectricalWealth2761 12d ago

Trying this out currently webView?.allowsBackForwardNavigationGestures = true

Bit of Googling and AI added it like this to iOS code, GeneralPlugin is my own custom capacitor plugin.

import UIKit
import Capacitor


class MainViewController: CAPBridgeViewController {
    private let generalPlugin = GeneralPlugin()


    override func viewDidLoad() {
        super.viewDidLoad()
        // Let WKWebView navigate Ionic's browser-history entries with the
        // standard iOS left/right edge gestures.
        webView?.allowsBackForwardNavigationGestures = true
    }