Sample: Animation cancellation — .NET MAUI 11 Preview 5#772
Open
davidortinau wants to merge 1 commit into
Open
Sample: Animation cancellation — .NET MAUI 11 Preview 5#772davidortinau wants to merge 1 commit into
davidortinau wants to merge 1 commit into
Conversation
Demonstrates the new CancellationToken support on ViewExtensions animation methods added in .NET MAUI 11 (dotnet/maui#33372). Includes: - FadeToAsync with a CancellationTokenSource - Inspecting the Task<bool> return value to distinguish cancellation from natural completion (the new overloads do not throw on cancel) - docregions for inclusion in docs/user-interface/animation/basic.md Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds a new sample under
11.0/UserInterface/Animation/AnimationCancellation/that demonstrates the newCancellationTokensupport onViewExtensionsanimation methods added in .NET MAUI 11 Preview 5 (dotnet/maui#33372).The new
FadeToAsync,RotateToAsync,ScaleToAsync,TranslateToAsync, and theirRel*/*X/*Ysiblings accept aCancellationTokenand returnTask<bool>—truewhen the animation was canceled,falsewhen it ran to completion. They do not throw on cancellation.The non-token-based methods (
FadeTo,RotateTo, etc.) are now[Obsolete]in favor of the new async overloads.What the sample shows
Image.FadeToAsync(0, 5000, Easing.SinIn, token)driven by aCancellationTokenSourceTask<bool>return value to distinguish cancellation from natural completionCancellationTokenSourceNote
11.0/Directory.Build.propspin to Preview 3 applies here too — see the BoxView.Fill PR description.