Created
December 24, 2023 21:05
-
-
Save Akifcan/dae39f874c96c83f0164a64a44d7bf54 to your computer and use it in GitHub Desktop.
react-native-image-color-pick-2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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