Skip to content

Commit

Permalink
Call base.OnResume if Existing NavigationFragment Early (#23187)
Browse files Browse the repository at this point in the history
  • Loading branch information
PureWeen committed Jun 24, 2024
1 parent 4318556 commit 3ec8be7
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,10 @@ public override AView OnCreateView(LayoutInflater inflater, ViewGroup? container
public override void OnResume()
{
if (_currentView == null || !NavigationManager.HasNavHost)
{
base.OnResume();
return;
}

if (_currentView.Parent == null)
{
Expand Down

0 comments on commit 3ec8be7

Please sign in to comment.