Ahmed Sayed
Ahmed Sayed

Reputation: 465

change back icon in toolbar inside Xamarin FormsPage

Using xamarin forms (PCL), I searched a lot but Can not find the exact solution, Can i change the back button in toolbar or at least should i be able to change its color and the title color as well?

Upvotes: 0

Views: 356

Answers (1)

zholinho
zholinho

Reputation: 520

I am not sure for changing back button, but I was changing back button and title color. An example, in App.cs file OnStart method I set that LoginPage is first page with black title, on this way

MainPage = new NavigationPage(new LoginPage()) { BarTextColor = Color.Black };

Please try something like this, I have some other examples if this one doesn't work.

Upvotes: 1

Related Questions