PopularPage: {
screen: PopularPage,
navigationOptions: {
tabBarLabel:
'最热'
,
headerShown:
false
,
tabBarIcon: ({ color, focused }) => (
<MaterialIcons name={
'whatshot'
} size={26} style={{ color: color }} />
),
},
},
...
const tabs = { PopularPage, TrendingPage, FavoritePage, MyPage };
Object.entries(tabs).map((item) => {
...