QRcode not displaying while convert to pdf in flutter
QR Code does not display in pdf while convert html content to pdf
QR Code does not display 开发者_如何学Pythonin pdf while convert html content to pdf. I am using QRcode library for creating QRcode in html and uses inappwebview for rendering html data.
<div id="qrcode" style=""></div> <script type="text/javascript"> var qrcode = new QRCode(document.getElementById("qrcode"), { width : 100, height : 100 }); qrcode.makeCode("Hello World"); </script>
精彩评论