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

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

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

14条回答
  •  抹茶落季
    2021-02-03 21:57

    The following works for me as the original Stylesheet uses "borderBottomWidth" on iOS:

    const navigator = StackNavigator(screens, {
      navigationOptions: {
        headerStyle: {
          elevation: 0,
          shadowOpacity: 0,
          borderBottomWidth: 0,
        }
      }
    });
    

提交回复
热议问题