226 questions
0
votes
0
answers
59
views
How can I capture and inspect outgoing HTTP requests from a Flutter WebView or video player?
I'm developing a Flutter app that loads a web page containing an embedded video player.
When the page loads, the browser internally makes several HTTP requests (for example, .m3u8 or .ts files), but I ...
0
votes
0
answers
77
views
InAppWebView gives blank page when popped back
I'm facing this problem where I get blank page when I go back to a previously opened InAppWebView widget.
I have a route /charts where Im rendering my chart widget which contains InAppWebView
...
-1
votes
1
answer
294
views
Flutter: in app web view causes app to be killed in windows
I'm building a flutter app on windows, i have tried different packages for in app web view like flutter_inappwebview and webview_cef.
The problem is when the application goes to the webview screen , ...
0
votes
1
answer
85
views
Gpay button is not displaying in the Flutter
I am trying to display payment button in the Inappwebview, but the button is not showing in flutter
I am using the dependency for the web view
flutter_inappwebview: ^6.1.5
and I ma using the code
...
1
vote
1
answer
171
views
Flutter WebView (flutter_inappwebview 6.1.0) not loading external JS script in React page — blank screen issue for few users only
I have a Flutter app using flutter_inappwebview: ^6.1.0. The frontend is built in Flutter, and the backend is Spring Boot (Java).
In the Flutter app, I load a WebView using initialUrlRequest, pointing ...
0
votes
0
answers
35
views
Flutter inAppWebView Instrumentation Test
I created a working android app using a flutter inAppWebView.
Is it possible to perform an instrumentation test with firebase test lab?
Basically I need to fill input texts, click buttons, download ...
0
votes
0
answers
87
views
Apple Pay not showing in flutter_inappwebview
I set applePayAPIEnabled to true, but Apple Pay is still not visible.
My webview settings:
InAppWebViewSettings(
isInspectable: kDebugMode,
mediaPlaybackRequiresUserGesture: false,
...
-1
votes
2
answers
331
views
In Flutter inappwebview i want to pass data from flutter to javascript. Both domain are different. How to pass parameters in javascript function?
Im calling an html page in flutter using flutter_inappwebview package. Now i have create a function in javascript and i want to pass data in the function from flutter.I want solution that will work ...
1
vote
2
answers
213
views
Flutter InAppWebView blocks FloatingActionButton click
I am a newbie doing Flutter and I want render 3d stuff on display using threejs because flutter scene is not supported for web yet.
I thought of using an InAppWebView doing the threeJS stuff and in ...
1
vote
0
answers
40
views
How to check if the file is actually being uploaded from my device's local storage?
I basically have a webpage that accepts files like docx, xlsx, and text, passes them to a REST API, does some conversion, and then outputs an application/octet-stream file with the name: <file_name&...
3
votes
0
answers
388
views
Using Flutter web and InAppWebView makes scrolling impossible
I have a Flutter application that I build a webpage from. In this application, I have some widgets in the top of the app, then an InAppWebView, and then some more flutter widgets in the bottom. All of ...
0
votes
0
answers
64
views
Scrolling not working on Windows Platform using touch pad
I am using InAppWebView version 6.2.0-beta.2 for the Windows platform, but I'm experiencing issues with scrolling using touchpad. Despite trying different values for the kScrollMultiplier, the ...
0
votes
1
answer
72
views
flutter_inappwebview: ^6.0.0 shoppify store share button not working on ANdroid only But working on iOS
I am using flutter_inappwebview: ^6.0.0 to display Shopify store inside web view. everything is working fine. But when I click on share button its not opening shareable apps bottom sheet, but its ...
0
votes
0
answers
92
views
How to Handle webkit.messageHandlers.appleLogin.postMessage(message) in Flutter (iOS-only) Using flutter_inappwebview?
I am a developer new to Flutter.
I am developing a webview-based app using Flutter. On the webpage, there is a JavaScript snippet like this:
webkit.messageHandlers.appleLogin.postMessage(message);
...
1
vote
1
answer
254
views
Method does not override any method from its superclass" Flutter with url_launcher and youtube_player_flutter
I’m working on a Flutter project, and I’m encountering a Swift Compiler Error when trying to run my app on the iOS simulator. Here’s the error message I’m getting:
Swift Compiler Error (Xcode): Method ...
0
votes
3
answers
264
views
flutter_inappwebview 6.0.0 web page is not loading
I am trying to add flutter_inappwebview 6.0.0. My code has no error but web page is not loading.
Here is my code:
class SettingsPage extends StatefulWidget {
const SettingsPage({Key? key}) : super(...
2
votes
1
answer
144
views
Flutter GetX: Obx not updating when using updateLoading() inside WebView
I'm using Flutter with GetX for state management. I have a WebView inside a Stack, and I want to display a CircularProgressIndicator while the WebView is loading. However, the Obx widget does not seem ...
0
votes
1
answer
102
views
in_app_webview write function to website that will detect if i open the website via browser or via flutter
I would expand to make my question more clearly:
i have a flutter app and a website. inside the flutter app i have a webview of the website. i want that in the webview the ui and functionality will be ...
2
votes
0
answers
75
views
Flutter InAppWebView PrintJobSetting is not applying settings on printing
I have added this code in onPrintRequest in InAppWebViewSettings. But those settings that I have provided in PrintJobSettings are not applying in generated documents. And in print preview it is not ...
2
votes
0
answers
207
views
Flutter InAppWebView: Google Sign-In Redirects to Blank Page
Problem Description
I'm trying to reuse the login stack of my website (lirmusic.com, which uses ThirdWeb) in my Flutter app using the inappwebview package. The flow should work as follows:
User wants ...
0
votes
1
answer
104
views
How to elegantly display long links in flutter_inappwebview v6.0.0
I need to display user generated HTML content in a flutter app. I'm using the inappwebview plugin for this, which is full featured and generally works well.
However, it does not display long links ...
2
votes
2
answers
2k
views
Flutter InAppWebView Build Issue: Execution failed for task 'flutter_inappwebview
I'm encountering an issue with my Flutter app and could really use some assistance. Here are the details:
Problem:
I'm facing a build failure with the following error message:
ERROR: Missing classes ...
0
votes
0
answers
44
views
Send JS function to Webview JS from Flutter
I have below function to return some data to JS side and It's a Map (However the flutter_inappwebview encodes the map after I return It), I do this by addJavaScriptHandler of flutter_inappwebview, But ...
0
votes
1
answer
84
views
change screen mode automatically in flutter
i wan to change my layout from landscape to portrait and vice versa inside my app (depending on the rotation of the device by the user) in flutter
i tried using OrientationBuilder and MediaQuery but ...
1
vote
1
answer
227
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 ...