Posts by Manoel Motoso • 21 points
2 posts
-
1
votes1
answer163
viewsA: Problems with canvas inside a Webview in React Native
I was able to solve by changing the dimensions at the end of the DOM loading, as in the example below. window.onload = () => { canvas.width = 1024; canvas.height = 768; ctx.drawImage(img, 0, 0);…
-
1
votes1
answer163
viewsQ: Problems with canvas inside a Webview in React Native
Why when changing the height > 100 and width > 640 on the canvas inside a Webview in React Nenable, nothing more and drawing? //funciona ... canvas.width = 640; canvas.height = 100;…