Open
Description
Hi, I'm trying to implement the component but with some animations I get a bad result.
Anyone know what I'm missing?
<?xml version="1.0" encoding="utf-8" ?>
<toolkit:Popup xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:toolkit="http://schemas.microsoft.com/dotnet/2022/maui/toolkit"
xmlns:skia="clr-namespace:SkiaSharp.Extended.UI.Controls;assembly=SkiaSharp.Extended.UI"
Color="Transparent"
x:Class="X.Views.PopUps.LoadingPopup">
<ContentView>
<Border BackgroundColor="WhiteSmoke"
Style="{StaticResource BorderLoty}"
Padding="15"
Stroke="Black"
WidthRequest="250">
<VerticalStackLayout HorizontalOptions="Center"
VerticalOptions="Center">
<skia:SKLottieView RepeatCount="-1"
RepeatMode="Reverse"
Source="Cat.json"
WidthRequest="250"
HeightRequest="150" />
<Label HorizontalOptions="Center"
Text="Wait"
VerticalOptions="Center"
HorizontalTextAlignment="Center"></Label>
</VerticalStackLayout>
</Border>
</ContentView>
</toolkit:Popup>
This is the lottie: https://lottiefiles.com/animations/loader-cat-dWUie0iIVk?from=search
Basic Information
I'm using version 2.0.0-preview.92
Activity