How to Render Base64 Encoded Image on React Native
Just use data URI scheme same as you would in html:
const encodedData = 'R0lGODlhAQABAIAAAAAA...7';
<Image source={{uri: `data:image/gif;base64,${encodedData}`}} />
Tweet
Just use data URI scheme same as you would in html:
const encodedData = 'R0lGODlhAQABAIAAAAAA...7';
<Image source={{uri: `data:image/gif;base64,${encodedData}`}} />
Tweet