-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Shell's back behavior using GoToAsync("..") triggers no page transition for first detail page on iOS #19074
Copy link
Copy link
Labels
area-animationAnimation, Transitions, TransformsAnimation, Transitions, Transformsarea-controls-shellShell Navigation, Routes, Tabs, FlyoutShell Navigation, Routes, Tabs, Flyoutarea-navigationNavigationPageNavigationPagemigration-compatibilityXamarin.Forms to .NET MAUI Migration, Upgrade Assistant, Try-ConvertXamarin.Forms to .NET MAUI Migration, Upgrade Assistant, Try-Convertpartner/syncfusionIssues / PR's with Syncfusion collaborationIssues / PR's with Syncfusion collaborationplatform/ioss/triagedIssue has been reviewedIssue has been revieweds/verifiedVerified / Reproducible Issue ready for Engineering TriageVerified / Reproducible Issue ready for Engineering Triaget/bugSomething isn't workingSomething isn't working
Milestone
Metadata
Metadata
Assignees
Labels
area-animationAnimation, Transitions, TransformsAnimation, Transitions, Transformsarea-controls-shellShell Navigation, Routes, Tabs, FlyoutShell Navigation, Routes, Tabs, Flyoutarea-navigationNavigationPageNavigationPagemigration-compatibilityXamarin.Forms to .NET MAUI Migration, Upgrade Assistant, Try-ConvertXamarin.Forms to .NET MAUI Migration, Upgrade Assistant, Try-Convertpartner/syncfusionIssues / PR's with Syncfusion collaborationIssues / PR's with Syncfusion collaborationplatform/ioss/triagedIssue has been reviewedIssue has been revieweds/verifiedVerified / Reproducible Issue ready for Engineering TriageVerified / Reproducible Issue ready for Engineering Triaget/bugSomething isn't workingSomething isn't working
Type
Fields
Give feedbackNo fields configured for issues without a type.
Description
When navigating back from a detail page in Shell to the root page by using
GoToAsync(".."), there is no page transition visible on iOS (=slide transition). The root page appears instantly.The navbar's back button behaves correctly and shows the back transition on both platforms.
Also calling
Shell.Current.Navigation.PopAsync()shows the correct behavior on both platforms.The page transition on iOS does not work only if navigating back to the root page on the navigation stack. If there are multiple pages on the stack it works as expected.
Steps to Reproduce
GoToAsync("..")--> no page slide transition is visible on iOS (Android works as expected)
Link to public reproduction project repository
https://github.com/christianrr/Maui_Shell_NavIssue
Version with bug
8.0.3
Is this a regression from previous behavior?
Yes, this used to work in Xamarin.Forms
Last version that worked well
Unknown/Other
Affected platforms
iOS
Affected platform versions
No response
Did you find any workaround?
Calling
await Shell.Current.Navigation.PopAsync();instead ofGoToAsync("..")Relevant log output
No response