pocheshire / BottomNavigationBar

Bottom Navigation Bar for Xamarin
214 stars 70 forks source link

Text disappears on active tab #72

Open ChizuNoYama opened 6 years ago

ChizuNoYama commented 6 years ago

The text for the active icon disappears when the tab is active.

craigathon commented 6 years ago

I am seeing this issue too, did you find a solution @titonton?

davidhedelin1 commented 6 years ago

Go to BottomBarPageRenderer and change the code here to:

_bottomBar.SetActiveTabColor(Element.BarTextColor.ToAndroid(Color.FromHex("#0094F0")));

It was previously this:

_bottomBar.SetActiveTabColor(Element.BarTextColor.ToAndroid());

@titonton @craigathon

ChizuNoYama commented 6 years ago

I was fixed and apologies for the late reply. I forgot exactly how i fixed it, but i have exactly 5 tabs and it works perfectly now. Thanks for replying guys