如何在带有react-navigation的标题中有多个按钮?

时间:2017-11-09 18:59:29

标签: react-native react-navigation

如何在使用react-navigation时将All和Favorites按钮放在标题中?

enter image description here

1 个答案:

答案 0 :(得分:1)

您可以使用headerTitle道具来渲染要在标头中使用的任何自定义组件。

  

headerTitle

     

标头使用的字符串或反应元素。默认为场景标题

export const SimpleApp = StackNavigator({
  Home: {
    screen: HomeScreen,
    navigationOptions: {
      headerTitle: <MyCustomComponent />
    }
  },
  Profile: { screen: Profile }
});