How do I hide the shadow under react-navigation headers?

后端 未结 14 982
佛祖请我去吃肉
佛祖请我去吃肉 2021-02-03 21:30

How do I hide the shadow under react-navigation headers?
They look like this.

14条回答
  •  误落风尘
    2021-02-03 22:06

    I don't know how much this answer will value, but sharing my code to let you know that this worked for me for react-navigation version: 3.9.1

    const AppNavigation = StackNavigator(
    {
      FirstScreen,
    },
    {
     defaultNavigationOptions: {
      headerStyle: {
        elevation: 0, //for android
        shadowOpacity: 0, //for ios
        borderBottomWidth: 0, //for ios
      },
    },
    })
    

提交回复
热议问题