DEV Community

skptricks
skptricks

Posted on

Injecting Custom JavaScript Into React Native Webview


Source : Injecting Custom JavaScript Into React Native Webview

This tutorial explains how to inject custom javascript in webview component in react native application.The injectedJavaScript is a custom prop of the React native Webview component. You can pass any JavaScript code ( as string ) to this prop, and React native will inject this JavaScript code into the Webview. The injected JavaScript will get executed once the Webview is finished loading.

Injecting Custom JavaScript Into React Native Webview

Top comments (0)