143
questions
0
votes
0
answers
16
views
How to get the underlying WebView created by the webview_flutter package
I am creating a flutter plugin for a native iOS sdk and this sdk requires a webview.
If the flutter project uses, webview_flutter package to create the webview, how can I get the underlying webview in ...
0
votes
0
answers
27
views
Issue regarding open file from android mobile inside webview
I need to open blob url getting from webview onNavigationRequest. I have tried running javascripts and convert to base64 format but it's not working. I have used webview_flutter: ^4.9.0 with latest ...
2
votes
1
answer
219
views
'Flutter/Flutter.h' file not found on iOS 18
When I ran the app on iOS 18 (Device - iPhone 13 Mini), It showed the following error.
Flutter/Flutter.h' file not found in file included from /Users/mdsabbirhossain/.pub-cache/hosted/pub.dev/...
0
votes
0
answers
78
views
I'm using webview_flutter 4.9.0, but I couldn't find how to implement "pull to refresh" feature
I've googled it a couple of hours of pull to refresh feature, but coudn't find it yet.
Some of them say to use RefreshIndicator but didn't work to webview_flutter.
And I've found this
How can i pull ...
0
votes
1
answer
43
views
Can we open native apps from flutter inapp-webview
I have created a flutter app which uses Azure ADB2C for login, this login screen in displayed as webview in flutter app.
Once successful login user has to authenticate using Microsoft authenticator ...
1
vote
1
answer
104
views
Flutter android Webview from HTMLString stays blank until interaction then shows content
i have the Problem that the webview in android stays blank (black or white depending on android theme) until some interaction, be it touching the screen, rotating the device or using the volume ...
0
votes
0
answers
33
views
Flutter detects touch as touch while scrolling in webview
I have a webview widget that displays a YouTube video in Flutter. The video opens without any problems, but when the page is scrolled by touching this widget, the video starts at the first touch. How ...
0
votes
0
answers
54
views
web_view flutter notworking
I am going to use webview_flutter in my flutter app but it is not working and showing this
Exception
_AssertionError ('package:webview_flutter_platform_interface/src/platform_webview_controller.dart': ...
0
votes
0
answers
30
views
Flutter App, I have an image path from user. But I need a Url link. So in web we use the Blob URLs createBlobUrl(), but how can i do this in my app
I used the image_picker package and got the iamge from user's phone which gives me a image.path but I need to send a url link to backend service, I can't just send a path of png. How can i use the ...
0
votes
0
answers
70
views
Flutter web window.open(url, '_self') clearing cache and cookies
is there any way to clear the cache and cookies after logging in? so if the user logs out of the app and logs back in, it won't automatically log in. I have a successful code in native mobile using ...
2
votes
1
answer
200
views
How to send a custom header in a POST request in Android using webview_flutter
This documentation states that it cannot be done, so I'm looking for an alternative solution:
Currently, setting custom headers when making a post request with the WebViewController's loadRequest ...
1
vote
1
answer
112
views
Play Video from URL in Webview. But Video stops frequently automatically. Controls doesn't work
In WebView Video stops frequently automatically. Controls doesn't work. Default Play/Pause buttom appears in center of video. Sometimes cause flickering issues with video controls.
I want to achieve ...
1
vote
1
answer
65
views
Error in Flutter when displaying a video (chewie) at the top of a column, and an expanded webview below, only in release mode
I want to create a Flutter app with the following layout:
A column with two children:
At the top, a video player (chewie) at the correct aspect ratio
Below, a webview covering the remaining space
I ...
0
votes
0
answers
47
views
Why can't I run the code below in flutter
In flutter, first I declare the varibale(late final WebViewController webViewController_;)
and then execute webViewController_.runJavaScript("localStorage.setItem('test_val','test_val__')");...
0
votes
1
answer
116
views
Flutter WebView tap target dislocated downward on Android
I'm attempting to utilize a webview plugin to display an HTTP website (specifically the login flow from a WebDAV server). However, in every plugin I've tried, when I click a button or link, nothing ...