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

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

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

14条回答
  •  再見小時候
    2021-02-03 22:10

    Try passing cardStyle: { shadowColor: 'transparent' }

    export const AppNavigator = StackNavigator(
    {
      Login: { screen: LoginScreen },
      Main: { screen: MainScreen },
      Profile: { screen: ProfileScreen },
    },
    cardStyle: { shadowColor: 'transparent' }
    

    As per this question React Navigation Stack Navigator default shadow styling

提交回复
热议问题