I can't figure out at all how to create an ImageSource from a base64 string.
let source = new ImageSource();
source.fromBase64('b64strhere').then(..);
in this context the parameter passed in the following promise is a boolean which I don't know what's supposed to represent. The ImageSource afterwards is null both on android and iOS.
What am I missing here?
I load it and put in an Image element like this:
(NS 3.1)