22,484 questions
0
votes
0
answers
23
views
WebView in .NET MAUI can not access a webpage that is served on a VM using Fiddler (a proxy)
I created a quite simple .NET MAUI App. For now it only implements a WebView with a source:
MainPage.xaml.cs
public MainPage()
{
InitializeComponent();
WebView webView = new WebView
{
...
0
votes
0
answers
25
views
Issues with folder selection via webkitdirectory and File System Access API in Telegram Mini Apps on Android
I'm facing a confusing and frustrating issue with folder selection for file uploads in a web app running inside Telegram Mini Apps on Android.
Folder selection works fine in regular browsers (Chrome ...
1
vote
0
answers
47
views
How to properly log HTTPS (especially SSE) request responses in Electron webview without using deprecated APIs?
Here's a minimal GitHub Gist that runs on Electron Fiddle :
It's supposed to show GitHub Copilot (github.com/copilot) in a webview element as if it was in a normal browser :
Using the following code ...
0
votes
0
answers
38
views
When I change the height of WebView, the H5 page will first move to top of webview then change its height?
I am developing an Android project by java. First, I change the webView's height to half of the screen. Then when user click a button, the webView will become full screen by animation. When the height ...
2
votes
1
answer
183
views
How to make fullscreen WebView on iOS 26 play nice with the status bar / dynamic island
I'm trying to create an SwiftUI iOS app with a fullscreen WebView and having trouble with content going behind status bar. Eg with the following code:
import SwiftUI
import WebKit
struct ContentView: ...
0
votes
0
answers
50
views
Red flash/bounce” behind a Flutter WebView on iOS when the keyboard appears
I am experiencing a bounce issue when the keyboard appears while the Input is focused, as shown in the attached screenshot video.
IssueVideo
To facilitate viewing, I have set the background to red.
...
0
votes
0
answers
41
views
WebView (Trade View chart) Scroll Conflict in React Native (Android)
I am embedding the TradingView chart inside a react-native-webview.
The chart displays and works fine for zoom/pan gestures, but there’s a scrolling issue:
When the user tries to scroll the entire ...
0
votes
0
answers
41
views
React Native with WebView and Deep Links
I am now developing the React Native app with the WebView. I have some links from emails that can lead to my website. In that case I want to open my app that is installed and open the WebView with ...
1
vote
1
answer
81
views
Are cookies set in react-native-webview automatically reflected in react-native?
I’m building an app with React Native and using react-native-webview.
The WebView loads a web app I built with React.
When the WebView logs in to API server, the server responds with a Set-Cookie ...
0
votes
0
answers
59
views
WebView2 app shows “Use and move camera” prompt when adding zoom to getUserMedia
I’m building a kiosk application using WebView2 and trying to access the camera from JavaScript. I want to automatically allow camera and microphone permissions in the PermissionRequested event using ...
0
votes
0
answers
59
views
How can i download video on my webview , simple video download is working but when try to download from Pexels.com it failed
Below is my Android code. It is able to download images, document, and videos.
Problem:
Some platforms like Pexels.com keep their videos as parts or stream how to download them?
webView....
0
votes
0
answers
62
views
I cannot hide a WebView in .NET MAUI
I added a WebView control to my .NET MAUI application and this control shall only be visible under certain conditions, e.g. the user wants to open a link.
My problem is that the WebView is always ...
5
votes
4
answers
13k
views
YouTube video in WebView gives error code 153 on Android
I am trying to play YouTube videos inside an Android WebView using the IFrame API.
The player initialises correctly, but sometimes I get this error:
Error code: 153
Here is my WebView setup:
binding?....
0
votes
0
answers
35
views
Android WebView LoadUrl is not waiting for another call to finish
I have a .net Android application (migrated from xamarin) and inside it there is a webView that displays a web app and also I have an Android Foreground Service that periodically is making a call to ...
3
votes
0
answers
103
views
JavaFX WebView: window.crypto.subtle is undefined
I try to display my website in a JavaFX WebView component, but the page fails to load. I get a blank page.
The site uses the JavaScript library angular-auth-oidc-client to redirect to WebSSO. After ...
0
votes
0
answers
72
views
How to capture errors from WebView?
I want to obtain all errors from html loaded into WebView and log/process errors. This should works for all platforms and for any content displayed inside WebView.
While running app under Windows I ...
0
votes
1
answer
72
views
Webview Bottom sheet is not scrolling in flutter
I have implemented the webview open in bottomsheet and i did but this sheet opens this does not scroll i tried with many other ways but in bottomsheet the webview does not scroll
onTap: () {
...
0
votes
0
answers
71
views
React Native Webview Pull to refresh is not working on android
In my React Native app, I’m using react-native-webview to display web content. I’d like to add a pull-to-refresh feature to the WebView. I’ve set:
<WebView
source={{ uri: 'https://example.com' }}
...
0
votes
1
answer
48
views
JS: navigator.mediaDevices.getUserMedia throws NotReadableError: Could not start video source
We have problems in our product that we are getting NotReadableError.
First i need to describe our situation. We have windows machine with 2 connected cameras on this machine where we are running our ...
0
votes
0
answers
84
views
Razorpay WebView not initializing on first click in Android
I'm facing an issue in my Android app while integrating Razorpay. The WebView does not open or initialize on the first click, but from the second click onwards, it works as expected.
I am getting an ...
0
votes
0
answers
204
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 ...
0
votes
2
answers
192
views
Input rendered in TWebBrowser using Edge keeps unfocusing when clicked
In my FMX application I have a webpage that I'm rendering inside a TWebBrowser. The webpage has a simple <input>, but on Windows if I click the input it focuses and immediately unfocuses. After ...
0
votes
0
answers
137
views
Black screen when using Barcode Scanner mlkit in the Value/Capacitor modal window, despite the permissions in vue 3
I'm tried to convert angular app to vue 3, but i get some problems. There are:
black window while i call startScan() but android says that camera in using and all permissions allowed
function scan() ...
0
votes
0
answers
52
views
WebView inside Grid and wrapped in ScrollView issue in iOS
I've a following XAML which works in Android, but not in iOS:
<ScrollView HorizontalScrollBarVisibility="Never">
<Grid RowDefinitions="Auto,*">
...
0
votes
0
answers
46
views
how to play audio in an html5 page when opened in android facebook webview?
I have an html5 application that uses three.js library for some 3d wireframe graphics
and a background music (mp3).
The page works perfectly in chrome.
But If I send to to someone on facebook and they ...