I want to implement swiping navigation in my app so user will be able to go back / forward in a convenient way.
For that matter I’ve used default webview swiping via [Capacitorjs | Angular] Back Swipe Support for iOS and Android
The problem I’m facing is: now my navigation (on the bottom) swipes along with the page content (as it is a part of the page).
I want the navigation to stay in place and only content could be swiped back / forward.
I can think about possible solution to this - having 2 different WKWebViews (separate views for <Navigation/>
and for <Content/>
) that communicate with each other would solve this, but is it possible with capacitor? Is this something to look in Subclassing CAPBridgeViewController | Capacitor Documentation?
Maybe any other solutions to achieve fixed navigation along with swipable content?