User383812 postedDescription
Hey! I'm very new with programming in Xamarin, when I try to use StackLayout or similar it won't load my gif anymore. Regular non animated images work well with StackLayout. However I need to have labels on top of my gif. If there's any other way to fix this I'd be happy for any response!
This Loads the gif:
<ContentPage.Content>
<ff:CachedImage Source="SwishAVI.gif" Aspect="AspectFill"></ff:CachedImage>
</ContentPage.Content>
This doesn't load the gif:
<ContentPage.Content>
<StackLayout>
<ff:CachedImage Source="SwishAVI.gif" Aspect="AspectFill"></ff:CachedImage>
(label goes here) <--------------
</StackLayout>
</ContentPage.Content>