react-native react-navigation StackNavigator android导航栏 标题下居中

navigationOptions:({ navigation }) => ({
  //设置导航栏文字样式
   headerTitleStyle:{
    flex:1,
    textAlign:'center'
  }
})

如上设置即可,如果有返回箭头,那么右边也要加一个 占位的或者设置样式 应该也是可以的,如padding

原文地址:https://www.cnblogs.com/bruce-gou/p/8602811.html