231 questions
0
votes
0
answers
65
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):
...
0
votes
0
answers
29
views
InAppWebView problem with page elements in IOS devices [closed]
InAppWebView does not load some icons in my page, but it's only in IOS devices. Does anyone know the possible causes of this problem and if there is a general solution?
0
votes
1
answer
79
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
45
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
76
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
62
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
71
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
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
28
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
81
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
61
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
55
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
298
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
69
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
143
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 ...