Changes related to PR #39 Feedback
This commit is contained in:
Родитель
664d762cf0
Коммит
93e107cd95
|
@ -8,7 +8,6 @@ namespace FormsCommunityToolkit.Samples.Views
|
|||
public AnimationsPage()
|
||||
{
|
||||
InitializeComponent();
|
||||
var test = new BeginAnimationBehavior();
|
||||
|
||||
AnimationExtensionButton.Clicked += async (sender, args) =>
|
||||
{
|
||||
|
|
|
@ -8,8 +8,10 @@ namespace FormsCommunityToolkit.Animations
|
|||
|
||||
protected override async void Invoke(VisualElement sender)
|
||||
{
|
||||
if (Animation != null)
|
||||
await Animation.Begin();
|
||||
if (Animation == null)
|
||||
return;
|
||||
|
||||
await Animation.Begin();
|
||||
}
|
||||
}
|
||||
}
|
Загрузка…
Ссылка в новой задаче