Questions tagged [webview-flutter]
122 questions
1
vote
1 answer
webview_flutter cause issues while archive in iOS
I have a flutter module and integrated in the existing iOS app (add to app).
Everything was working but when I try to Archive it produces an error in webview_flutter module:
bitcode bundle could not be generated because…

Let's_Create
- 2,963
- 3
- 14
- 33
1
vote
0 answers
Flutter touch events passing through Drawer Element to underlying UIKitView with embedded WKWebView
I've got a Plugin which uses a UIKitView which contains a WKWebView on iOS and a AndroidView with WebView on Android. The Android solution is working as expected, but I've got two problems on iOS. First, some contents of the web-view, e.g. HTML…

user1234
- 91
- 8
1
vote
1 answer
How to load a HTML in String to WebView in Flutter
I have some HTML code which is in String variable, not in a file. I want to load this String-HTML on WebView

Abdulaziz Abduqodirov
- 82
- 1
- 9
1
vote
2 answers
Clearing whitebox without using resizeToAvoidBottomInset: false
I'm developing application with Flutter and webview_flutter package.
With default configuration I'm getting a white box at bottom of screen.
When I put this code to Scaffold:
resizeToAvoidBottomInset: true
it's disappear:
But in that case Webview…

Erçin Dedeoğlu
- 4,950
- 4
- 49
- 69
0
votes
1 answer
How to pass headers in html string's urls (eg: src = "google.com") in webview_flutter 4.2.2
I have a requirement where I need to display HTML string in webview_flutter (https://pub.dev/packages/webview_flutter) Plugin. The issue is that the html contains some urls that are not loaded because they require authorization token in header. I am…

saad khurshid
- 35
- 5
0
votes
0 answers
How to access hidden fields in a form in flutter webview?
Hi I have an app that using webview but for some reason I need to retrieve hidden field data on specific page, how can I achieve that with using flutter_webview package?

Saeed Ghasemi
- 141
- 1
- 10
0
votes
0 answers
How to load a HTML String with relatives paths using the loadHtmlString method of the WebViewController
I am trying to use a WebViewWidget on flutter to display a HTML content saved in a String.
I want to use a String instead of a file because the content could by modify several times and in this way I avoid to read and write the file constantly.
The…

Fabrizio
- 40
- 1
- 7
0
votes
0 answers
I am using webview_flutter to show html content in mobile in emulator and in debug mode it is working but when i released the apk is not working
it is showing the black screen when the html page is
I/flutter (16317): #0 Element._debugCheckStateIsActiveForAncestorLookup.
framework.dart:4334
I/flutter (16317): #1 …

piyush bisht
- 1
- 1
0
votes
2 answers
How to display webpage title in the App Bar with webview_flutter
Trying to display the title of the webpage in the AppBar using the getTitle() method of webview_flutter.
It seems to work intermittently when the Hot reload is used on the debug bar but when I navigate to another page, it doesn't update.
Here is…

oluwatyson
- 251
- 4
- 18
0
votes
1 answer
how to remove unused plugin in pubspec.lock
for example, i just change from webview_flutter to flutter_webview_pro.
and when i try flutter build apk --split-per-abi, this error comes out :
failure occurred while executing…

M A Aziz
- 1
0
votes
1 answer
Call a webview as child Container in multi screen App in Flutter
I have Multi screen app contains a bottom navigation bar, i need a page as webview as child container.
App is working fine but Webview is not loading by Container
I know we need to replace the Container by WebViewWidget but how will the other app…

Rizwan Patel
- 5
- 4
0
votes
0 answers
When flutter use webview_flutter opens a webpage, how to use local js to avoid downloading js from the server
We are going to open a web page in the APP, this webpage has 3 js files, a.js b.js c.js, because the a.js file is very large, we are going to download it in advance in the app, when opening the webpage, only download b.js and c.js , a.js uses…

David Sguod
- 1
- 1
0
votes
0 answers
Flutter Offline Stoarge Webview
Can I achieve the appsheet like apps using flutter webview. I have a platform which is used to build microapps. I need to load these microapps inside the flutter container/webview and use the microapps in the mobile. Also the microapps should…
0
votes
0 answers
How to get the html text that is displayed on the screen with webview_flutter?
with FLUTTER :)
I would like to retrieve the text that is displayed on the screen when I load a page on a website in order to be able to analyze it
I would like to be able to do it with webview_futter (or an equivalent) because the website I want to…

Pierre jean
- 59
- 5
0
votes
1 answer
Intercepting Remote Image Requests in Flutter WebView and Fallback to Local Assets
Hello Flutter Community,
I am currently working on a project that involves a Flutter application which essentially serves as a shell for a Vue3 web app, embedded via the webview_flutter package. However, I am encountering an issue related to the…

VanPommel
- 75
- 5