【发布时间】:2020-04-01 09:05:41
【问题描述】:
在新版本,即 react-native 的 0.61 中,我没有找到任何改变标题字体的机制。早期的版本有自己的解决方案,但现在的版本没有,这反过来又促使我提出这个问题。怎么改字体?
【问题讨论】:
-
你使用哪个导航库?
标签: javascript android ios node.js react-native
在新版本,即 react-native 的 0.61 中,我没有找到任何改变标题字体的机制。早期的版本有自己的解决方案,但现在的版本没有,这反过来又促使我提出这个问题。怎么改字体?
【问题讨论】:
标签: javascript android ios node.js react-native
如果您在“reactnavigation”库中用于导航
这样做
As described in the documentation
class HomeScreen extends React.Component {
static navigationOptions = {
title: 'Home',
headerStyle: {
backgroundColor: '#f4511e',
},
headerTintColor: '#fff',
headerTitleStyle: {
fontWeight: 'bold',
},
};
/* render function, etc */
}
【讨论】: