224 questions
0
votes
0
answers
61
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
72
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
78
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
93
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):
...
-1
votes
1
answer
304
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
66
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
86
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
207
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
174
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
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 ...
1
vote
1
answer
168
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
88
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
72
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
334
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
votes
1
answer
92
views
Livewire in a flutter inappwebview not working
Hello i'm currently developing a mobile app for a existing web app that use laravel and livewire.
I know that's already a specific case...
I'm using flutter_inappwebview (6.1.5) to implements part of ...
1
vote
2
answers
217
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 ...
0
votes
0
answers
237
views
xcode flutter ios flutter_inappwebview ios errors when building project
flutter_inappwebview_ios
Command SwiftCompile failed with a nonzero exit code
/Users/a2901/.pub-cache/hosted/pub.dev/flutter_inappwebview_ios-1.0.13/ios/Classes/InAppWebView/InAppWebView.swift
/Users/...
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&...
0
votes
0
answers
68
views
Permission alert now showing in flutter web view, while same url is asking for permission automatically in browser not in webview flutter android
I have tried InAppWebView & WebView both but permission alert box not showing in android app. Same URL is asking for camera permission automatically in browser but not asking for permission in ...
3
votes
0
answers
398
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
159
views
Issue with Google Sign-In Using flutter_inappwebview
I am using the flutter_inappwebview package in my Flutter app for login functionality. When trying to log in using Google Sign-In, the already logged-in Google accounts on the device are not displayed....
0
votes
0
answers
65
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
0
answers
43
views
Deleting httponly cookies in Flutter CookieManager
I'm looking for a way to remove a HttpOnly Cookie from the Flutter CookieManager. Am using this in the flutter Inappwebview and would like this to work on both Android and iOS.
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 ...
1
vote
0
answers
116
views
Google Sign-In Dialog Not Opening in Flutter InAppWebView
I'm using Flutter's InAppWebView to open a website that includes Google Sign-In functionality. However, the Google Sign-In dialog or options are not opening when I interact with the website. Instead, ...
1
vote
1
answer
256
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
1
answer
158
views
How to hide link in flutter in app webview?
I was using the flutter_inappwebview: ^6.1.5 to make a PWA app using a react frame work. There is several link button which are connecting to many pages and i couldnt hide these link when i long press ...
0
votes
3
answers
265
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(...
-1
votes
1
answer
83
views
Flutter evaluateJavascript Not working for me
await webViewController.evaluateJavascript(source: """
\$(document).bind('DOMSubtreeModified', function () {
if(\$("a[href^='/GenericUpload/GetFile']").length > 0)...
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 ...
1
vote
0
answers
105
views
Loss of Internet Connection in Main Activity While Using Custom Tabs in Flutter on Android
I'm encountering an issue in my Flutter application where I lose internet connectivity in my main activity when a custom tab overlay (using the inappwebview package) is open in a second activity. The ...
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 ...
6
votes
2
answers
4k
views
IOS flutter app is not running after updating the Xcode and mac os
Recently I updates the Xcode to 16.0, flutter to 3.24.3 and also mac to 15.0.
After that I updates all the packages of used libraries to latest version using the command flutter pub upgrade --major-...
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 ...
1
vote
1
answer
49
views
Grey Screen Error in release mode. working fine in debug
@override
Widget build(BuildContext context) {
return Scaffold(
bottomNavigationBar: Container(
height: 60,
decoration: const BoxDecoration(
gradient: ...
2
votes
0
answers
208
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
0
answers
64
views
How to change the language or texts of the date and time picker buttons in a webview?
When I use the HTML input type time or date in an Android WebView, the translation for set and clear is missing in the date and time picker.
In this example, I am using Portuguese as the language. ...
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 ...
0
votes
1
answer
270
views
when i update flutter_inappwebview 6.0.0
hi i am beginner in flutter i have problem when update package flutter_inappwebview 6.0.0 from flutter_inappwebview: ^5.8.0
return Observer(builder: (context) {
return Stack(
children: ...
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 ...
1
vote
1
answer
2k
views
How to resolve err: R8: Missing class android.window.BackEvent
ERROR: Missing classes detected while running R8. Please add the missing classes or apply additional keep rules that are generated in /Users/admin/Desktop/mobile-app/build/flutter_inappwebview/outputs/...
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
0
answers
351
views
youtube_player_flutter loading infinitely
im using 3 packages youtube_player_flutter for opening youtube video, flutter_inappwebview for docx file view, flutter_widget_from_html for html string i get from api. the issue is when i open youtube ...
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 ...
2
votes
0
answers
1k
views
Flutter WebView - error net::ERR_BLOCKED_BY_ORB
I'm using flutter_inappwebview to display a part of our website that requires logging in. Authentication is via cookie injection.
Everything works perfectly on our AWS server, but it gives an error on ...
1
vote
1
answer
230
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
2
answers
2k
views
How to load HTML from String in InAppWebView?
I'm sometimes receiving HTML as a response from network requests. I've encountered a scenario where I need to display HTML content within the InAppWebView. Is there any short way to do that.
I tried ...
0
votes
1
answer
197
views
Keyboard doesn't appear in Flutter in app web view
In my Flutter code I use flutter_inappwebview to open a web page inside the application so that the user can enter some data and submit, in some cases which I can't detect the keyboard doesn't appear ...
0
votes
1
answer
827
views
UPI intent apps are not showing on inappwebview in flutter while calling a payment gateway url. if i open the same url on normal browser it work fine
I have a razorpay integration on my flutter application. The existing implementation uses flutter inappwebview to hit the payment gateway url. Issue is when the url is being called from inappwebview ...