gunas
gunas

Reputation: 1907

How to hide ios navigation bar back button in xamarin

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?

Upvotes: 2

Views: 1401

Answers (1)

Giorgi
Giorgi

Reputation: 30873

You can hide the back button like this:

NavigationItem.SetHidesBackButton (true, false);

Upvotes: 2

Related Questions