Skip to content

Commit 2f4dd2c

Browse files
authored
Merge pull request #482 from mukaschultze/fix/tabstrip-bg-color
fix(core-tabs): tab bar background color not applying on `tabStripItems`
2 parents 79e5a21 + 5ba67db commit 2f4dd2c

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

src/core-tabs/tab-navigation/index.android.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -552,6 +552,9 @@ export abstract class TabNavigation<T extends android.view.ViewGroup = any> exte
552552
} else {
553553
this.mTabsBar.setBackground(tryCloneDrawable(value, this.nativeViewProtected.getResources()));
554554
}
555+
this.tabStrip.items?.forEach((item) => {
556+
this.updateItem(item);
557+
});
555558
}
556559

557560
public getTabBarHighlightColor(): number {

0 commit comments

Comments
 (0)