Skip to content

Commit

Permalink
[iOS] Added DidPopItem to the navigation renderer (#26235)
Browse files Browse the repository at this point in the history
  • Loading branch information
kubaflo authored Dec 9, 2024
1 parent 9ab7f18 commit c3f3e3d
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -914,6 +914,14 @@ internal bool ShouldPopItem(UINavigationBar _, UINavigationItem __)
return true;
}

[Export("navigationBar:didPopItem:")]
[Internals.Preserve(Conditional = true)]
bool DidPopItem(UINavigationBar _, UINavigationItem __)
{
_uiRequestedPop = true;
return true;
}

internal static void SetFlyoutLeftBarButton(UIViewController containerController, FlyoutPage FlyoutPage)
{
if (!FlyoutPage.ShouldShowToolbarButton())
Expand Down

0 comments on commit c3f3e3d

Please sign in to comment.