Description
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>
Answers
Can you provide your sample ?Because it works fine on my side.
> Can you provide your sample ?Because it works fine on my side.
Solved it by moving over to Android Studio
You can accept your answer so that more people can see it