Draw local image on canvas using react-native-canvas

everyone. I am going to draw image in expo react native project. Btw it is working on development stage with “yarn start”, but after building the apk, image isn’t displaying on canvas. Please check below codebase and let me know. If anyone has experience in this kind of issue, please let me know the solution for this. Thank you.

import {Asset} from ‘expo-asset’;


const context = canvas.getContext(`2d`);
let img = new CanvasImage(canvas);
img.src = Asset.fromModule(require(`../assets/images/gameIcons/game.png`)).uri;

img.addEventListener('load', function() {
    context.drawImage(image, 0, 0, 100, 100);
})