User236903 postedHello, i am using the library above for displaying an svg image. Documentation code is the below :smile:
<?xml version="1.0" encoding="UTF-8"?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" x:Class="FFImageLoading.Forms.Sample.SvgSamplePage"
xmlns:ffimageloadingsvg="clr-namespace:FFImageLoading.Svg.Forms;assembly=FFImageLoading.Svg.Forms">
<ContentPage.Content>
<ffimageloadingsvg:SvgCachedImage WidthRequest="200" HeightRequest="200" Source="sample.svg"/>
<!-- SECOND APPROACH (PCL EmbeddedResource): -->
<ffimageloadingsvg:SvgCachedImage WidthRequest="200" HeightRequest="200" Source="resource://FFImageLoading.Forms.Sample.Resources.sample.svg"/>
</ContentPage.Content>
</ContentPage>
My problem is that ffimageloadingsvg:SvgCachedImage doesnt exist. Propably SvgCachedImage class has been changed. Is there anyone who had the same issue?