Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,7 @@ internal bool SendPop(UIViewController topViewController = null)

if (!enabled)
{
_sendPopPending = false; // reset before returning
return false;
}
Comment thread
devanathan-vaithiyanathan marked this conversation as resolved.

Expand All @@ -191,6 +192,7 @@ internal bool SendPop(UIViewController topViewController = null)
// Allow the page to intercept back navigation via OnBackButtonPressed
if (tracker.Value.Page?.SendBackButtonPressed() == true)
{
_sendPopPending = false; // reset before returning
return false;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -883,10 +883,6 @@ public void BackButtonBehavior_CommandParameter_CommandFiresWithCorrectParameter
[Test, Order(50)]
public void BackButtonBehavior_IsEnabled_False_BackButtonDoesNotNavigate()
{
if (iOS26OrHigher)
{
Assert.Ignore("Fails on iOS 26 due to bug issue: https://github.com/dotnet/maui/issues/34771");
}
App.WaitForElement("MainPageIdentityLabel");
App.WaitForElement("IsEnabledButton");
App.Tap("IsEnabledButton");
Expand All @@ -909,10 +905,6 @@ public void BackButtonBehavior_IsEnabled_False_BackButtonDoesNotNavigate()
[Test, Order(51)]
public void BackButtonBehavior_IsVisible_False_ProgrammaticNavStillWorks()
{
if (iOS26OrHigher)
{
Assert.Ignore("Fails on iOS 26 due to bug issue: https://github.com/dotnet/maui/issues/34771");
}
App.WaitForElement("MainPageIdentityLabel");
App.WaitForElement("IsVisibleButton");
App.Tap("IsVisibleButton");
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading