首页 > 解决方案 > 反应导航 5 tabBarBadgeStyle 不起作用

问题描述

react-navigation-5在我的 中使用,react-native app我使用创建了一个底部选项卡@react-navigation/material-bottom-tabs。我在其中一个选项卡中添加了一个徽章,我tabBarBadge为此使用了属性,它工作正常。我需要更改徽章colorbackground colour为此我使用tabBarBadgeStyle了但它不起作用,

<Tab.Screen         
  options={{
    tabBarBadge:88,
    tabBarBadgeStyle:{backgroundColor:'#fff'}
  }}
/>

请帮我实施tabBarBadgeStyle

标签: androidiosreactjsreact-nativereact-navigation-v5

解决方案


https://reactnavigation.org/docs/themes/

const MyTheme = {
  ...DefaultTheme,
  colors: {
    ...DefaultTheme.colors,
    notification: 'red',
  },
}

<NavigationContainer theme={MyTheme}>
...
</NavigationContainer>

推荐阅读