Skip to content

Instantly share code, notes, and snippets.

@Akifcan
Created December 24, 2023 21:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Akifcan/dae39f874c96c83f0164a64a44d7bf54 to your computer and use it in GitHub Desktop.
Save Akifcan/dae39f874c96c83f0164a64a44d7bf54 to your computer and use it in GitHub Desktop.
react-native-image-color-pick-2
<WebView
originWhitelist={['*']}
source={{ html: script }}
javaScriptEnabled={true}
onMessage={(event) => {
if (!event.nativeEvent?.data) {
return;
}
console.log(event.nativeEvent.data);
}}
/>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment