423 questions
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
27
views
net::ERR_NAME_NOT_RESOLVED in React Native WebView (APK Release Mode)
I'm building a React Native app using Expo (managed workflow) that loads a TradingView chart using WebView. It works perfectly in development mode (expo start) and in the development build (eas build -...
0
votes
0
answers
42
views
Programmatically set username/password in the login form in safari mobile and the values set are not being recognized by form submit
I am going to implement password saving/autofill in my react-native-webview. I implemented to save password when user first enter the username/password and then load that credential and assign the ...
0
votes
0
answers
27
views
WebView Ignores Indirect CSS Styles on iOS Device
Bug description:
When rendering an HTML page inside a WebView in a React Native (Expo) app, we first download a React production build (static zip file) and save it in the app's document directory. We ...
0
votes
1
answer
45
views
HTML Render with RenderHTML and Webview React Native
Comparison of RenderHTML and Webview
I try to render HTML with display: 'inline' instead of 'block' with RenderHTML library, is there anyway I can achieve display: 'inline' like Webview?
When a long ...
0
votes
0
answers
17
views
How do I replace a webView menuItem when one of the menu is clicked?
When a menu item is selected, e.g highlight, I want to replace show colours to be selected within the same context menu. the defaultMenuItems should be replaced with the highlightMenuItems
const ...
0
votes
0
answers
24
views
Specific webPage is stuck at loading in `react-native-webview` on physical device's Expo Go?
A specific web page is getting stuck on mobile device expo go yet it loads completely on simulator(BlueStacks)Expo Go.
webPage is SPA but the loading elements never disappear on physical device's expo ...
0
votes
1
answer
36
views
Load html file from device storage react native
Hi am trying to load html file in Download folder to render in my React Native application.
<WebView
originWhitelist={['*']}
scrollEnabled={false}
source={{
uri: '...
1
vote
1
answer
55
views
WebView blocks KYC verification flow (target="_blank" issue) react-native-webview
I'm here because I need some help about webviews in react-native
Description
I am integrating react-native-webview to handle a KYC (Know Your Customer) verification flow. The WebView loads a secure ...
1
vote
1
answer
48
views
Cookies are not sent in webview headers
Bug description:
I'm following the react-native-webview documentation and passing cookies, but when debugging, it appears that cookies are not sent on the first WebView call (which is the desired time)...
0
votes
0
answers
35
views
React Native WebView Resets Form Data When Navigating Back
I am using react-native-webview in my React Native app to display a questionnaire link. The WebView contains a form with inputs such as text fields and checkboxes that users can fill out. However, ...
1
vote
0
answers
66
views
Getting security issues saying WebViews Allowing Access to Local Resources for Android in react native
I am using the latest version of the react-native-webview:13.12.5 in my react native app. I have been seeing the security issues related to WebViews Allowing Access to Local Resource for the Android ...
0
votes
0
answers
25
views
External Payment provider in Webview goes to session timeout
I have a react native application when we have to use webview component for external payment providers.
The props I pass through the webview are listed below:
ref: webViewRef,
source: {
uri: 'www....
0
votes
0
answers
29
views
React Native WebView whitescreen for both ios and android BUG
I am trying to implement this ballerine KYC web ui sdk into my react native app, and load it with react-native-webview. The html works perfectly fine on a regular index.html file but just produces a ...
0
votes
0
answers
36
views
How to play a video from a web view without it going full screen automatically?
Using react-native-webview, I am rendering a live stream. Currently, when I play any video on the webview, the video automatically opens to full screen and takes over the entire iphone. Is there a way ...