Skip to content

Commit 28928e5

Browse files
authored
fixes badgeColor in ios 13+ (#6246)
The badge colour was not changing from the default red in the tab bar item (when passing "badgeColor" to "bottomTab" options)
1 parent 5b1d5b8 commit 28928e5

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

lib/ios/UIViewController+RNNOptions.m

+6-3
Original file line numberDiff line numberDiff line change
@@ -95,9 +95,12 @@ - (void)setTabBarItemBadge:(NSString *)badge {
9595
}
9696

9797
- (void)setTabBarItemBadgeColor:(UIColor *)badgeColor {
98-
if (@available(iOS 10.0, *)) {
99-
self.tabBarItem.badgeColor = badgeColor;
100-
}
98+
if (@available(iOS 13.0, *)) {
99+
self.tabBarItem.standardAppearance.stackedLayoutAppearance.normal.badgeBackgroundColor = badgeColor;
100+
}
101+
else if (@available(iOS 10.0, *)) {
102+
self.tabBarItem.badgeColor = badgeColor;
103+
}
101104
}
102105

103106
- (void)setStatusBarStyle:(NSString *)style animated:(BOOL)animated {

0 commit comments

Comments
 (0)