22,544 questions
0
votes
0
answers
30
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,
...
2
votes
1
answer
30
views
Is postMessage still the correct way to send data from a React Native app to a Web App using WebView?
I am developing a mobile application with login features using React Native. Inside the mobile app, I render a Next.js (React) web application using WebView.
To pass user data from the React Native ...
0
votes
0
answers
18
views
Platform Android, JavascriptInterface not work after Talkback opened
I use the android WebView and there are some @JavascriptInterface functions,but after I open the Talkback, the JavascriptInterface functions don't work. That's why? How to resolve the problem? - -
0
votes
1
answer
38
views
How to avoid redirection of Azure AdB2c login page in IOS application created via capacitor
We have used Microsoft Azure ADB2C integrated in an Angular web app. Now we have converted it into a PWA app. With the help of the Capacitor library, we have converted it into an iOS application. But ...
2
votes
0
answers
34
views
How to achieve SSO with JavaFX WebView using OAuth 2.0 Federated Authentication in a Java Desktop Application (Java 21)?
I have a standalone Windows desktop application built using Java Swing, running on Java 21. For authentication, we are using OAuth 2.0 federated authentication.
Currently, the login page is launched ...
0
votes
0
answers
54
views
How to open chrome forcibly instead of open webview when I click on my url in any app
My problem:
I have a service with web interface. The customers receives a link to the web page and click's on it.
Depends on a customer platform - the link must be opened in a different way:
in case ...
0
votes
1
answer
46
views
WKwebview does not allow video being played in the background
I’ve been working on a personal iOS project for fun — essentially a YouTube music player, learning how background media playback works in native iOS apps.
After seeing that Musi (a famous music ...
2
votes
1
answer
51
views
CORDOVA: I can DOWNLOAD 30 MB, but not 60 MB ? (cordova-plugin-file)
I am using this implementation, and I can download up to ~30 MB of data on my A53 Samsung Android device with it:
// File download
function downloadResult(taskId) {
cordova.plugin.http....
0
votes
0
answers
28
views
DNA Editor App DOM UI Rendering not loading
enter image description here
This is how it's supposed to look and functions perfectly fine in my browser, but I've have had to start over and rebuild it from scratch for Android Webview since it ...
0
votes
0
answers
21
views
EnsureCoreWebView2Async(null) does not return result
protected override async void OnContentRendered(EventArgs e)
{
base.OnContentRendered(e);
try
{
await WebView1.EnsureCoreWebView2Async(null);
WebView1.Source=new Uri("...
0
votes
0
answers
36
views
Android webview keyboard covers the text input when focus
I am making an android app that utilizes Webview and run html which connects to an API to fetch data. Everything is good and working well but I need help to fix the keyboard covering the input when ...
0
votes
0
answers
31
views
SwipeRefreshLayout with Webview + nested scrolling
I'm trying to use SwipeRefreshLayout with WebView.
I'm facing the problem where in the middle of page, when user scrolls down, unwanted refresh kicks in.
Also when there are nested scrolling and ...
1
vote
1
answer
74
views
How to get fetch TOWARDS localhost to FUNCTION on CORDOVA Android
My question is simple.
I make a call using fetch in my CORDOVA app like so, from the ./www/js/index.js script:
const response = await fetch('http://localhost:3000/poc3/convert', {
method: 'POST',
...
0
votes
0
answers
10
views
Using `wx.miniProgram.postMessage`, on higher versions of iOS, navigating back will directly close the WebView container
Page A (H5) navigates to another project’s Page B (H5) via window.location.href. On Page B, an internal route (push) takes the user to Page C. When tapping the back button on Page C, on higher ...
0
votes
0
answers
30
views
Flutter WebView not setting cookies for a specific domain
I'm using webview_flutter to open a URL in my Flutter app. I'm trying to set cookies before loading the WebView, but they don't seem to apply in the browser.
This helps others avoid suggesting the ...