Skip to content
This repository has been archived by the owner on May 1, 2024. It is now read-only.

Commit

Permalink
Fix issue hiding back nav button on iOS (#14596)
Browse files Browse the repository at this point in the history
  • Loading branch information
jsuarezruiz committed Dec 24, 2021
1 parent 2095bee commit b5697d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Xamarin.Forms.Platform.iOS/Renderers/NavigationRenderer.cs
Expand Up @@ -1216,7 +1216,7 @@ internal void SetupDefaultNavigationBarAppearance()

UIImage GetEmptyBackIndicatorImage()
{
var rect = RectangleF.Empty;
var rect = new RectangleF(0, 0, 1, 1);
var size = rect.Size;

UIGraphics.BeginImageContext(size);
Expand Down

0 comments on commit b5697d6

Please sign in to comment.