I have a problem with creating stacklayout, which contains image created from base64string, downloaded from database. Example of image declare:
In ViewModel:
public string ImageString {get; set;} = "[base64string - 95503 chars]";
Fragment code in xaml:
<ffimageloading:CachedImage Aspect="AspectFill" Source="{Binding ImageString}"/>
When I tried base64 directly (instead of binding), it worked. I think the problem is too large binding string.
Any idea of resolving this problem?
If you want to use binding, you can try to convert the
ImageBase64String
intoXamarin.Forms.ImageSource
.I did a test on my side, and it works on my side. Please refer to the following code:
Usage example:
Note:
Do not forget to set the
BindingContext
for your page.