I\'m building a react native app that needs to store images at base64 string format for offline viewing capabilities.
What library / function would give me the best
The standalone expo FileSystem package makes this simple:
const base64 = await FileSystem.readAsStringAsync(photo.uri, { encoding: 'base64' });
As 2019-09-27 this package handles both file:// and content:// uri's