【发布时间】:2021-01-20 10:31:03
【问题描述】:
有没有办法在 React Native Navigation 5.0 中更改下面两个“名称”道具的字体大小?
const Tab = createBottomTabNavigator();
export const Nav = () => {
return (
<NavigationContainer>
<Tab.Navigator>
<Tab.Screen name="Game" component={HomeStackScreen} />
<Tab.Screen name="Map" component={SettingsStackScreen} />
</Tab.Navigator>
</NavigationContainer>
);
};
【问题讨论】:
标签: reactjs navigation native