22,484 questions
0
votes
0
answers
47
views
How to do this expo project the right way
Im new to expo. Im trying to make a webview app. It should be able to check if there's an internet connection before loading URl. And if there's none, it will show a simple message. What i have now is ...
0
votes
0
answers
64
views
How to workaround or fix Alpine.js on Webview on iOS?
Alpine.js functionality is not working when accessed with WebView on iOS (React Native). On Android it works as expected. Is there any way to setup WebView to make it work?
//App.tsx
import React ...
0
votes
0
answers
88
views
How to Handle webkit.messageHandlers.appleLogin.postMessage(message) in Flutter (iOS-only) Using flutter_inappwebview?
I am a developer new to Flutter.
I am developing a webview-based app using Flutter. On the webpage, there is a JavaScript snippet like this:
webkit.messageHandlers.appleLogin.postMessage(message);
...
0
votes
0
answers
59
views
Access Token Not Retained in WebView When Opening via Deep Link in React Native #3621
Bug description:
I am encountering an issue with WebView in my React Native app. When the application is launched using a deep link, the WebView does not retain the access token, causing the user to ...
0
votes
1
answer
444
views
WebView not loading in release mode on physical iOS device, but works in simulator and debug mode
I'm using the webview_flutter package in my Flutter app to display a webpage when a button is pressed. Everything works as expected in the Xcode iOS simulator and when I run the app on a physical ...
2
votes
1
answer
1k
views
How to layout a webview for Android 15 edge to edge
I have an app consisting only of a webview. I'm trying it to update for Android 15 with edge to edge.
Below the current code from layout/webview.xml and MainActivity.kt.
It worked well on Android 14.
&...
2
votes
3
answers
2k
views
How to create folder reference in Xcode?
I tried to add files to Xcode 16 for loading a react build into webview by following this tutorial https://ditto.live/blog/run-react-locally-in-ios-app:
Right click on the Project(In project ...
0
votes
1
answer
98
views
WebViewClient.onLoadResource method alternative in flutter_inappwebview?
Is There any alternative to WebViewClient.onLoadResource method in flutter?
I am looking for a function that will tell me what resources the web is loading in flutter.
I searched so far for an ...
2
votes
1
answer
470
views
Issue with Loading CSS and JS Files in WebView from MAUI Resources Folder
I am building a .NET MAUI app and am trying to render an HTML file in a WebView. The HTML file needs to load external CSS and JavaScript files that are located in the Resources/FirecodeRequirements ...
0
votes
1
answer
264
views
Evaluating Javascript in WebView through Jetpack Compose IconButton
I am writing my first Android app and after lots of trial and error I've managed to get a working scaffold structure with a top bar, bottom bar, and webview. What I'm trying to do now is make is so ...
1
vote
0
answers
78
views
webview.getHeight() inside of onPageFinished(WebView view, String url) not working
I need to get webview height of each one of these webviews
<ScrollView
android:id="@+id/scrText"
android:layout_width="match_parent"
...
0
votes
0
answers
534
views
Open app from Instagram webview on Android
When the user is browsing a web page in the Instagram webview, there doesn't appear to be a way to open another app that the user has installed on their Android device.
I have Android App Links set up ...
0
votes
0
answers
109
views
How to set font size of the rendered webpage via webview_flutter in Flutter app?
I tried the solution stated in this link, by setting the bodyLarge, bodyMedium, and bodySmall fontSize values in the TextTheme as follows but it did not apply to the rendered webpage.
void main() =>...
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 ...
0
votes
1
answer
87
views
Flutter webview makes other widgets non interactive
When using webview any gestures or mouse events ignores and widgets above on webview become non interactive like in my sample if a add webview in stack listview does not scroll.
https://zapp.run/edit/...
0
votes
0
answers
38
views
Flutter Webview, python
I can’t run the project through flutter! It doesn’t take the location on Android, and the video/camera doesn’t display on iPhone! Help with this, other sites with camera and location support are all ...
1
vote
0
answers
175
views
Use Kotlin Multiplatform wasmJS in android/ios webview
Is it possible to use Kotlin Multiplatform's wasmJS in a WebView?
I've configured it for Android's WebView, but the screen remains blank.
However, when using the IR (JavaScript) target, it works fine.
...
1
vote
1
answer
280
views
Why does the Flutter WebView package require you to use ".postMessage()"?
I have the Flutter WebView package in my pubspec.yaml. The webview has a JavaScript channels feature. You can a define a Dart function with a name like Foo for example. But for that function to handle ...
2
votes
0
answers
67
views
A grey border is showing in Html code in Flutter WebView
I'm using WebView to display an vision360 video in flutter. The URL was not looking right in WebView that why JavaScript is used to modify width and height of video and buttons, But in some big ...
1
vote
1
answer
90
views
Web page is not initializing right when using WebVIew in jetpack compose
Most websites(e.g. Facebook, Google, YouTube) are fine. Some things like the on Image is not!
What's the issue? And why exactly does this website cause this issue?
@Composable
fun WebViewComposable(
...
1
vote
0
answers
161
views
IndexedDB getting flushed on Android webview with ungraceful shutdown
I have a cordova based Android application that runs web based content and used localstorage and indexedDB. I am encountering an issue where if the Android device is powered OFF and powered ON ...
1
vote
0
answers
71
views
Can't display html content with WebView from external file
Hi I'm trying to display html content from external file located on my hard drive with WebView. There is also reference to js file inside the html. When I run my program the output window is empty. I'...
0
votes
1
answer
53
views
Widgets with Webview are overflowing
When I create a structure with webview and SingleChildScrollView on a simple page, when I scroll the html gets mixed up with other widgets.
Expected results
Webview widget scrolls within itself ...
0
votes
0
answers
126
views
SwiftUI Cant load HTML string WKWebView
We use CloudFlare protection for connection. And when the verification request is triggered, the backend sends us the HTML code, which we open using Webview, respectively, the main problem is that I ...
0
votes
1
answer
42
views
get User inputs in Webview, React native
the webpage im loading in my webview needs an audio input but the webview throws "getUserMedia not supported in your browser" error.
import React, { useState, useEffect } from 'react';
...