我正在尝试制作一个包含标签栏的主页。有4个标签,其中1个是收件箱标签,其中显示了所有接受的邮件。但在收件箱标签上,我想发出一条通知,显示未读邮件的数量。有人可以告诉我如何在标签上放置通知吗?
这是我使用路由器流量的标签:
G-EUPT
这是我的TabIcon.js
<Scene
hideNavBar={true}
key="hometab"
tabs
tabBarStyle={{backgroundColor: '#1C2219'}}
activeTintColor="#FFBD05"
inactiveTintColor="white">
<Scene key="tab1home" component={Tab1Home} title="Home" iconName="ios-home" icon={TabIcon} hideNavBar={true}/>
<Scene key="tab2request"
component={Tab2Request}
title="Request"
iconName="ios-list"
icon={TabIcon} />
<Scene key="tab3inbox"
component={Tab3Inbox}
title="Inbox"
iconName="ios-mail"
icon={TabIcon}/>
<Scene key="tab4profile"
component={Tab4Profile}
title="Profile"
iconName="md-person"
icon={TabIcon}
hideNavBar={true}/>
</Scene>