score:0

maybe you can try something like this

<image source={{uri: blobimage}} style={{ height: 200, width: null, flex: 1 }}/>

score:13

you can convert the blob to base64 from filereader api and then display it.

code:

const filereaderinstance = new filereader();
 filereaderinstance.readasdataurl(blob); 
 filereaderinstance.onload = () => {
     base64data = filereaderinstance.result;                
     console.log(base64data);
 }

and display it once you get it as:

<image source={{uri: base64imagedata}} style={{ height: 200, width: null, flex: 1 }} />

Related Query

More Query from same tag