So the simple idea is that I have SVG data as a string that I fetch from Internet. I would like to show that as an icon in my app. Is there any way I can do this?
I have seen countless examples where SVG data is in a file located in the app's directory that is then showed but this is not what I am looking for. I literally have the data in XML format after http request and I only need to transform that to a Image or something else visible on the screen.
I have been trying to find a solution to this for hours now, so I would really appreciate some help :S
SvgImageSource.FromSvgStringSvgImageSource.FromSvgStringdid the trick really well. Great point in this method is also that you can first make changes to your string before you actually pass it forward (for example change colors etc).