React Native, change React Navigation header styling

前端 未结 5 439
孤街浪徒
孤街浪徒 2021-02-01 19:54

I\'m implementing React Navigation in my React Native app, and I\'m wanting to change the background and foreground colors of the header. I have the following:

/         


        
5条回答
  •  醉话见心
    2021-02-01 20:45

    According to documentation you can use "navigationOptions" style like this.

    static navigationOptions = {
      title: 'Chat',
      headerStyle:{ backgroundColor: '#FFF'},
      headerTitleStyle:{ color: 'green'},
    }
    

    For more info about navigationOptions you can also read from docs:-

    https://reactnavigation.org/docs/navigators/stack#Screen-Navigation-Options

提交回复
热议问题