Android flutter's flutter_webview_plugin plugin's webview shows loading indicator and nothing else

MHJ

I have been building a flutter android app with flutter_webview_plugin. My problem is when I use back button of android phone the web view rather than closing shows the loading indicator and nothing else.

MHJ

To solve this problem we will have to listen both the webview's onDestroy status and navigator's pop-ability and then we will pop the webview route (screen). To do this we will just write this code within the build method where the WebviewScaffold is returned.

flutterWebviewPlugin.onDestroy.listen((_){
      if(Navigator.canPop(context)){
        Navigator.of(context).pop();
      }
    });

Problem solved :)

note flutterWebviewPlugin is an object of FlutterWebviewPlugin declared out of the build method.

この記事はインターネットから収集されたものであり、転載の際にはソースを示してください。

侵害の場合は、連絡してください[email protected]

編集
0

コメントを追加

0

関連記事

分類Dev

Android flutter's flutter_webview_plugin plugin's webview shows loading indicator and nothing else

分類Dev

Flutter "flutter_webview_plugin" Androidの戻るボタンの問題

分類Dev

flutter_webview_pluginを使用してビデオを再生する方法

分類Dev

Android WebView not loading Mixed Content

分類Dev

Android Studio where is color picker for Flutter plugin

分類Dev

Trying to build a Flutter Plugin that calls getSupportFragmentManager() in Android

分類Dev

Flutter Webview Google OAuth

分類Dev

Android webview loading fail in API 21 and above

分類Dev

Inspecting Android Crosswalk Webview via Chrome shows empty window

分類Dev

Viewpager's indicator is not moving

分類Dev

Flutter Camera Plugin

分類Dev

Flutter share plugin not working

分類Dev

Run some Javascript in Flutter Webview

分類Dev

xfce4-indicator-plugin

分類Dev

How do you register an Android Service in a Flutter Plugin

分類Dev

iOSのcordova-plugin-crosswalk-webview

分類Dev

Android WebView

分類Dev

Android WebView

分類Dev

Chef knife plugin(s) not recognized?

分類Dev

What is the difference between flutter plugin and flutter module?

分類Dev

How to use cocoapods with a Flutter plugin?

分類Dev

Get activity reference in flutter plugin

分類Dev

Jquery datatable plugin not loading

分類Dev

Url not loading in Webview using ViewModel

分類Dev

Flutter:同じwebviewウィジェットのwebview_flutter更新URL

分類Dev

what is the difference between "notification area" (systray), "indicator plugin" (indicator) and "status notifier plugin" (statusnotifier)

分類Dev

Failure loading image / flutter

分類Dev

How to add a circular dot as an indicator in Flutter Tabs?

分類Dev

OctoberCMS Get plugin's Dropdown values at frontend

Related 関連記事

  1. 1

    Android flutter's flutter_webview_plugin plugin's webview shows loading indicator and nothing else

  2. 2

    Flutter "flutter_webview_plugin" Androidの戻るボタンの問題

  3. 3

    flutter_webview_pluginを使用してビデオを再生する方法

  4. 4

    Android WebView not loading Mixed Content

  5. 5

    Android Studio where is color picker for Flutter plugin

  6. 6

    Trying to build a Flutter Plugin that calls getSupportFragmentManager() in Android

  7. 7

    Flutter Webview Google OAuth

  8. 8

    Android webview loading fail in API 21 and above

  9. 9

    Inspecting Android Crosswalk Webview via Chrome shows empty window

  10. 10

    Viewpager's indicator is not moving

  11. 11

    Flutter Camera Plugin

  12. 12

    Flutter share plugin not working

  13. 13

    Run some Javascript in Flutter Webview

  14. 14

    xfce4-indicator-plugin

  15. 15

    How do you register an Android Service in a Flutter Plugin

  16. 16

    iOSのcordova-plugin-crosswalk-webview

  17. 17

    Android WebView

  18. 18

    Android WebView

  19. 19

    Chef knife plugin(s) not recognized?

  20. 20

    What is the difference between flutter plugin and flutter module?

  21. 21

    How to use cocoapods with a Flutter plugin?

  22. 22

    Get activity reference in flutter plugin

  23. 23

    Jquery datatable plugin not loading

  24. 24

    Url not loading in Webview using ViewModel

  25. 25

    Flutter:同じwebviewウィジェットのwebview_flutter更新URL

  26. 26

    what is the difference between "notification area" (systray), "indicator plugin" (indicator) and "status notifier plugin" (statusnotifier)

  27. 27

    Failure loading image / flutter

  28. 28

    How to add a circular dot as an indicator in Flutter Tabs?

  29. 29

    OctoberCMS Get plugin's Dropdown values at frontend

ホットタグ

アーカイブ