From 044956579a6c63a98170dd17a6f641435584af97 Mon Sep 17 00:00:00 2001 From: vladimir-beloded Date: Fri, 19 May 2023 10:50:16 +0300 Subject: [PATCH] Wait for a blank page to be loaded before closing the browser --- .../in_app_browser/InAppBrowserActivity.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/src/main/java/com/pichillilorenzo/flutter_inappwebview/in_app_browser/InAppBrowserActivity.java b/android/src/main/java/com/pichillilorenzo/flutter_inappwebview/in_app_browser/InAppBrowserActivity.java index 0828c02c8..e33935e80 100755 --- a/android/src/main/java/com/pichillilorenzo/flutter_inappwebview/in_app_browser/InAppBrowserActivity.java +++ b/android/src/main/java/com/pichillilorenzo/flutter_inappwebview/in_app_browser/InAppBrowserActivity.java @@ -548,10 +548,10 @@ public void onPageFinished(WebView view, String url) { webView.destroy(); webView = null; manager = null; + finish(); } }); webView.loadUrl("about:blank"); - finish(); } }