relative path page has small vertical animation #36009
|
When I navigate to a I am using .NET 10. |
Replies: 2 comments
|
This looks like it should already be disabled by the combination you are using.
If I would not expect users to need another setting beyond |
|
Microsoft.Maui.Controls v10.0.80 fixes this issue |
This looks like it should already be disabled by the combination you are using.
GoToAsync("DetailPage", false)disables the navigation animation for that call, andShell.PresentationMode="NotAnimated"should also mark the target page as non-animated. So if Windows still shows a small vertical movement while Android does not, I would suspect a Windows-specific Shell/WinUI behavior or a MAUI bug rather than a missing setting.If
DetailPageis registered as a route rather than aShellContentpage, the current setup still looks reasonable to me.I would not expect users to need another setting beyond
animate: falseandNotAnimated. If a minimal repro on .NET 10 Windows still shows the vertica…