ALL BUSINESS
COMIDA
DIRECTORIES
EDUCATIONAL
ENTERTAINMENT
FASHION TIPS
FINER THINGS
FREE CREATOR TOOLS
HEALTH
MARKETPLACE
MEMBER's ONLY
MONEY MATTER$
MOTIVATIONAL
NEWS & WEATHER
TECHNOLOGIA
TELEVISION NETWORKS
USA VOTES 2024
VIDEOS
INVESTOR RELATIONS
IN DEVELOPMENT
Posted by - Latinos MediaSyndication -
on - May 10, 2023 -
Filed in - Technology -
-
329 Views - 0 Comments - 0 Likes - 0 Reviews
I'm using the webview_flutter plugin: ^4.2.0 and
webview_flutter_wkwebview: ^3.4.2
And here's my problem, my iPhone swipe doesn't work at all to return to the previous page. Do not understand why? Maybe you have some ideas?
Here is my code
final _key = UniqueKey(); late final WebViewController webViewController; void initState() { super.initState(); webViewController = WebViewController(); if (webViewController is WebKitWebViewController) { (webViewController as WebKitWebViewController) .setAllowsBackForwardNavigationGestures(true); } webViewController ..enableZoom(false) ..setJavaScriptMode(JavaScriptMode.unrestricted) ..loadRequest(Uri.parse(url)); } WebViewWidget( controller: webViewController, key: _key, )
Everything works on android
I just moved from version 3 to version 4+, in version three, I would do like this -
gestureNavigationEnabled: true
And that would work great.