Questions tagged [react-native-webview]
406 questions
0
votes
1 answer
Is there a better way to integrate Landbot (ChatBot) into React Native App?
Currently, I have embedded this ChatBot into a WebView something like this.
import React, { useRef } from 'react';
import { StyleSheet, View, SafeAreaView } from 'react-native';
import HeaderV2 from '../../components/HeaderV2';
import { WebView,…

Shadab Mehdi
- 604
- 10
- 23
0
votes
0 answers
React Native Webview Error while running library having react-native-webview in a React Application
I have created a react native Library which is using Webview. This is the package.json of the library.
"dependencies": {
"react-native-webview": "*"
},
So I installed the library using the npm package with the command npm install…

Aman Verma
- 3,155
- 7
- 30
- 60
0
votes
1 answer
Design for extending react native webview
I want to create a wrapper around react-native webview such that I provide some of the default values and client can override them. I would also like to provide default implementations for methods
For Example:

user415612
- 457
- 1
- 3
- 13
0
votes
1 answer
How can I solution to SSL Error Handler - React-Native-Webview
My application with a version of react-native 0.60.4, uses the reat-native-webview library, the version of reat-native-webview has been updated from 9.4.0 to 10.6.0, when updating that version when wanting to update it in the playstore it did not…

hg20
- 13
- 2
- 6
0
votes
1 answer
Camera access on react-native webview
I am working on an app which makes use of webview on react native. The web app itself when fired up on an android device asks for the prompt to access camera and works absolutely fine. I am quite new to react-native, the web app itself was done in…

oluwatyson
- 251
- 4
- 18
0
votes
1 answer
react-native-webview control media playback in iframe
I'm currently working on an app that has a variety of media sources. One of them is embedded Vimeo videos using react-native-webview and . I'm wondering if there is any way that I can control playback of those components from…

drrkmcfrrk
- 328
- 1
- 13
0
votes
0 answers
Why does react-native webview load page super zoomed out?
Im loading a page in a webview in a react-native app. the html for this page is rendered/sent by the server to the client. testing this server endpoint with my desktop browser as the client, it looks great, works great, no issues.
When I navigate to…

Jim
- 1,988
- 6
- 34
- 68
0
votes
2 answers
React native webview - this.webview doesn't exist
I am pretty new to react-native. Currently, I am developing an app with react native web-view.
My requirement is to open external links of the app in a chrome tab. To achieve that I used the following code.

madhavig
- 1
- 3
0
votes
1 answer
Blank screen on Loading document fom uri in Expo's webview
I am using Expo .
import { WebView } from "react-native-webview";
and imported webview like above i am trying to load a document file from some https url , it is working fine and loading the xls file in IOS but in android it giving a blank screen.
…

Gaurav Dixit
- 11
- 3
0
votes
1 answer
how to solve Deprecated API Usage WebViewi in React Native IOS?
I'm building a React Native application that I'm trying to deploy to the App Store.
I used a couple of packages, the ones that I think gives me the errors…

Amine
- 2,241
- 2
- 19
- 41
0
votes
0 answers
Audio/Video not supported React Native ios webview
I'm working on a live video session app. I have used the BigBlueButton API to develop the web version, which is working properly on the web. I'm trying to use that web app URL in my react native app using react-native-webview. In iOS app, I'm able…

Saikat Kundu
- 350
- 1
- 15
0
votes
2 answers
How can I trigger action back in the react-native from my WebView?
I have a component , this component display a credit card/cvc/expiry form.
It is displayed in a react-native application using react-native-webview.
I must trigger the form event and update the view on submit, the submit button is…

Dimitri Kopriwa
- 13,139
- 27
- 98
- 204
0
votes
1 answer
How to disable auto zoom in quill editor from react native package?
I am trying to integrate quill editor in my react-native application. I am using
react-native-webview-quilljs package for this.
https://github.com/reggie3/react-native-webview-quilljs

Khim Bahadur Gurung
- 626
- 9
- 19
0
votes
1 answer