【问题标题】:Change font for the title of Navigation Header bar in react-native在 react-native 中更改导航标题栏标题的字体
【发布时间】:2020-04-01 09:05:41
【问题描述】:

在新版本,即 react-native 的 0.61 中,我没有找到任何改变标题字体的机制。早期的版本有自己的解决方案,但现在的版本没有,这反过来又促使我提出这个问题。怎么改字体?

【问题讨论】:

  • 你使用哪个导航库?

标签: javascript android ios node.js react-native


【解决方案1】:

如果您在“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 */
}

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 2017-01-19
    • 1970-01-01
    • 2012-01-14
    • 1970-01-01
    • 2015-12-24
    • 1970-01-01
    • 2023-03-09
    • 1970-01-01
    相关资源
    最近更新 更多