Alan2
Alan2

Reputation: 24552

How can I change the color of the Navigation Bar < and word in iOS and Xamarin?

My application uses a tab page and when I push a new page then a back navigation arrow appears with a word to the right of it.

In iOS it's blue. How can I change the color of this arrow and the text with Xamarin Forms?

Upvotes: 1

Views: 258

Answers (1)

Gerald Versluis
Gerald Versluis

Reputation: 33993

The color is tied to the BarTextColor of the NavigationPage.

You can change the text by setting the Title of each page, that is what is shown by default. You can also change this by setting it through the SetBackButtonTitle(Page, string) method.

Upvotes: 1

Related Questions