react-native-qrcode
react-native-qrcode copied to clipboard
onLoad function not working
onLoad function not working
<QRCode value={id} size={200} onLoad={this.QRCodeOnLoad} />
Version: react-native: 0.56.0
same issue
+1
+1
onLoad and onLoadEnd cannot be triggered on iOS
Ref: https://github.com/facebook/react-native/issues/18802#issuecomment-401764616
Add baseUrl: '', in Canvas.js can work for me:
source={{
html:
"<style>*{margin:0;padding:0;}canvas{transform:translateZ(0);}</style><canvas></canvas><script>var canvas = document.querySelector('canvas');(" +
renderString +
').call(' +
contextString +
', canvas);</script>',
baseUrl: '', // Add this line
}}
BTW, this repo is no longer maintain 😢