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

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

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

14条回答
  •  天涯浪人
    2021-02-03 21:43

    You can try this, and it worked for me !

    export const SignedOut = StackNavigator({
      SignIn: {
        screen: SignInScreen,
        navigationOptions: {
          title: "SignIn",
          headerStyle: {
            shadowOpacity: 0, // This is for ios
            elevation: 0 // This is for android
          }
        }
      }
    });
    

提交回复
热议问题