如何更改后退按钮标题反应导航

时间:2019-12-03 15:44:18

标签: react-native

嗨,如何在react-navigation中更改后退按钮的标签?我已经尝试过headerBackTitle: 'Retour',但仍然使我Back

UserProfil: {
    screen: UserProfil,
    navigationOptions: (navigation) => ({
      headerTintColor: 'white',
      headerStyle: {
        backgroundColor: '#780141'
      },
      headerBackTitle: 'Retour'
    }),
  },
},
  navigationOptions={
      headerMode:'float',
});

1 个答案:

答案 0 :(得分:1)

尝试

UserProfil: {
    screen: UserProfil,
    navigationOptions: {
      headerTintColor: 'white',
      headerStyle: {
        backgroundColor: '#780141'
      },
      headerBackTitle: 'Retour'
    },
  },

}