We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f8bd89 commit 73ff6deCopy full SHA for 73ff6de
src/core-tabs/tab-navigation/index.android.ts
@@ -587,7 +587,7 @@ export abstract class TabNavigation<T extends android.view.ViewGroup = any> exte
587
if (!tabStripItem.nativeViewProtected) {
588
return;
589
}
590
- const itemColor = tabStripItem.index === this.selectedIndex ? this.mSelectedItemColor : tabStripItem.style.color || this.mUnSelectedItemColor;
+ const itemColor = tabStripItem.index === this.selectedIndex ? this.mSelectedItemColor : this.mUnSelectedItemColor || tabStripItem.style.color;
591
// set label color
592
if (itemColor) {
593
tabStripItem.nativeViewProtected.setTextColor(itemColor.android || null);
0 commit comments