Skip to content

Instantly share code, notes, and snippets.

@VisualMelon
Created August 27, 2022 09:33
Show Gist options
  • Save VisualMelon/9d696329467e77988b3e4d80662c03a4 to your computer and use it in GitHub Desktop.
Save VisualMelon/9d696329467e77988b3e4d80662c03a4 to your computer and use it in GitHub Desktop.
Avalonia immediate transition
public class NoTransition : IPageTransition
{
public Task Start(Visual from, Visual to, bool forward, CancellationToken cancellationToken)
{
if (from is not null)
{
from.IsVisible = false;
}
if (to is not null)
{
to.IsVisible = true;
}
return Task.CompletedTask;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment