All Questions
Tagged with react-native-webview javascript
71 questions
0
votes
0
answers
43
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 ...
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
105
views
Keyboard Shaking (Open/Close) on Samsung Galaxy S23 Ultra (Android 13)
I am encountering a bug where the keyboard continuously opens and closes (shakes) when focusing on input fields within a WebView in my React Native app. This behavior only occurs on the Samsung Galaxy ...
1
vote
0
answers
289
views
react native webview at latest version doesn't have injectJavascript in its reference
I am fighting with this problem for about a week.
It is React Native, and I am using React Native Webview for my project.
React Native Webview
I am having problems using injectJavaScript with the ...
0
votes
1
answer
651
views
Stop auto-dowload of pdf files from iframe component in webview component react native
I'm trying to render a website which has iframe components that are used to render pdf files on the browser in my react-native application. But instead of displaying the files like in the browser, the ...
1
vote
0
answers
218
views
Remove "Watch again on YouTube" from youtube shorts played using react-native-webview
I am using react-native-webview to play youtube videos on my react native app.
I wanted a feature where user wont be able to open youtube app or any thing else while watching video on my app. I am ...
2
votes
0
answers
602
views
Unable to call function from `injectJavascript` in a react native webview
I am experiencing issues regarding using the injectJavascript method to inject and call a function from the WebView component from the library: react-native-web-view. I am doing this to workaround the ...
1
vote
0
answers
229
views
Instagram API auth link not working on react-native webview
I am trying to authenticate a user using a webview which loads the instragram auth api the link looks like this:
https://api.instagram.com/oauth/authorize?client_id=1234&redirect_uri=https://...
2
votes
1
answer
434
views
how to implement console log in html ace-editor in react native webview
I am implementing ace editor in react native webview. I have redefined console log to show console log in html. As you can see in the image. I am implemented function to clear console logs and execute ...
1
vote
1
answer
2k
views
Cookies are not working in react native web view for android
<WebView
incognito={true}
javaScriptEnabled={true}
thirdPartyCookiesEnabled={true}
sharedCookiesEnabled={true}
source={{
uri: url,
...
1
vote
3
answers
930
views
Cancel Payment Button in paystack not working
I am implementing payment gateway with paystack for the first time and I really don't want to use third party packages for paystack. It is a React Native application. I wanted to implement it using ...
1
vote
0
answers
514
views
React Native Webview is not download automatically. Both ios and android
The webview not download file automatically to device. In html, I use a link tag and set attribute as download. In webview ios, just open and preview that file but not download automatically. At the ...
1
vote
1
answer
4k
views
How to detect Webview in Javascript for IOS and Android? [duplicate]
How can I detect if user is accessing my website in Webview or on browser?
My websites backend is PHP and Frontend is Vue.
1
vote
0
answers
511
views
React native webview crashing on Android
i have screen inside my app where the user is required to enter their 3 digit code to continue. When the user, enters their 3 digit code, a modal with a webview inside is opened. The webview then ...
2
votes
0
answers
69
views
Pass react native webview content to an api paragraph by paragraph and highlight the content on wepage based on the response received by the api
I am creating a react native application in which user can load any website in the webview. I need to pass the text of the webpage to an API paragraph by paragraph and highlight the content returned ...