I'm using SketchCanvas component for custom ui. my SketchCanvas looks like this:
<SketchCanvas ref={(ref) => (this.canvas = ref)} style={{ flex: 1 }} />
I'm trying to save the canvas by doing this.canvas.save("png", true, "folderName", "filename", false, false, false );. But when I check for the image, It is not there.
What could be the issue here ?
I'm using SketchCanvas component for custom ui. my SketchCanvas looks like this:
<SketchCanvas ref={(ref) => (this.canvas = ref)} style={{ flex: 1 }} />
I'm trying to save the canvas by doing
this.canvas.save("png", true, "folderName", "filename", false, false, false );
. But when I check for the image, It is not there. What could be the issue here ?