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.
2 parents 3f8bd89 + 73ff6de commit 97bb4bbCopy full SHA for 97bb4bb
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