Why changing the height > 100 and width > 640 on the canvas inside a WebView in react native, nothing else and drawing?
//funciona
...
canvas.width = 640;
canvas.height = 100;
ctx.drawImage(img, 0, 0);
...
//não funciona
...
canvas.width = 1024;
canvas.height = 768;
ctx.drawImage(img, 0, 0);
...