We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5b1d5b8 commit 28928e5Copy full SHA for 28928e5
lib/ios/UIViewController+RNNOptions.m
@@ -95,9 +95,12 @@ - (void)setTabBarItemBadge:(NSString *)badge {
95
}
96
97
- (void)setTabBarItemBadgeColor:(UIColor *)badgeColor {
98
- if (@available(iOS 10.0, *)) {
99
- self.tabBarItem.badgeColor = badgeColor;
100
- }
+ if (@available(iOS 13.0, *)) {
+ self.tabBarItem.standardAppearance.stackedLayoutAppearance.normal.badgeBackgroundColor = badgeColor;
+ }
101
+ else if (@available(iOS 10.0, *)) {
102
+ self.tabBarItem.badgeColor = badgeColor;
103
104
105
106
- (void)setStatusBarStyle:(NSString *)style animated:(BOOL)animated {
0 commit comments