How to hide ios navigation bar back button in xamarin

1.4k Views Asked by At

I have created a simple applicaton in xamarin with 2 screens.

Here in second screen, the back button should not appear on the navigation bar.

Can anyone please help me how to hide this button?

1

There are 1 best solutions below

0
On

You can hide the back button like this:

NavigationItem.SetHidesBackButton (true, false);