我要从此更改headerTitle
static navigationOptions = ({ navigation }) => {
...
return {
headerTitle: 'ABC'
};
};
对此
static navigationOptions = ({ navigation }) => {
...
return {
headerTitle: props => <Text style={[props.styles, {color: props.tintColor}]}>ABC</Text>
};
};
但是用第二种方法,它看起来不像第一种。 我想采用第二种方法的原因是我想为标题添加accessiblityLabel。 您如何自定义headerTitle,使其看起来像第一个