答案 0 :(得分:1)
您可以使用headerTitle
道具来渲染要在标头中使用的任何自定义组件。
headerTitle
标头使用的字符串或反应元素。默认为场景标题
export const SimpleApp = StackNavigator({
Home: {
screen: HomeScreen,
navigationOptions: {
headerTitle: <MyCustomComponent />
}
},
Profile: { screen: Profile }
});