223 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
0
answers
78
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
78
views
How to persist accounts across sessions without hitting CookieMismatch?
Question
I’m building a Flutter app and handling login with Google using flutter_inappwebview
.
The flow is:
User clicks "Continue with Google".
I open an InAppWebView that loads my backend ...
0
votes
0
answers
91
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
vote
0
answers
100
views
iOS Crash on UICommand performWithSender:target: When Using Context Menu in InAppWebView (Flutter)
I'm encountering a crash on iOS when tapping on a native context menu item inside a flutter_inappwebview. The crash log points to UICommand performWithSender:target: in UIKitCore.
Crash Log (Excerpt):
...
-2
votes
1
answer
374
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
0
answers
68
views
How to hide the link url in statusbar chrome show at bottom of the page?
I'm creating desktop app for windows and macos and linux. I have a webview in a page, but it's showing link preview at the bottom of the page whenever I hover over a link with href. it's quite ...
0
votes
1
answer
89
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
...
0
votes
0
answers
228
views
Flutter InAppWebView: Cookies work on Android but iOS redirects to login instead of dashboard
I’m working on a Flutter app where the user logs in, and after login, I load a WebView. Once the user signs in, I get an access token and refresh token, which I store using Hive.
The backend sets ...
1
vote
1
answer
196
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
42
views
How to allow inappweb camera embedding in android flutter?
I am using the in app web view package to display my website in the app. My website is responsive for an app as well. While using this app, I have to do plaid self-verification and in this ...
0
votes
0
answers
36
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 ...
1
vote
1
answer
196
views
Flutter: Inappwebview Pdf file not opening in Webview
import 'package:flutter/material.dart';
import 'package:flutter_inappwebview/flutter_inappwebview.dart';
import 'package:loading_indicator/loading_indicator.dart';
import '../../widgets/constants.dart'...
0
votes
0
answers
96
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,
...
0
votes
0
answers
83
views
Flutter InAppWebView - how do you remove navigation / history from the webview?
I have a usecase where I want to take a user's input and dynamically render it to HTML and display an output preview of what it will look like. This means that as the user is modifying fields, the ...
-1
votes
2
answers
342
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 ...