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

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

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

14条回答
  •  隐瞒了意图╮
    2021-02-03 21:47

    As of 2019 this answer doesn't work in version 3.

    The new way of doing it is:

    
    const AppNavigation = StackNavigator(
      {
        'The First Screen!': { screen: FirstScreen },
      },
      {
        defaultNavigationOptions: {
          headerStyle: {
            elevation: 0,
            shadowOpacity: 0,
          },
        },
      },
    );
    
    

提交回复
热议问题