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

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

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

14条回答
  •  生来不讨喜
    2021-02-03 22:05

    The shadow is achieved via elevation, use:

     headerStyle: {
         backgroundColor: 'white',
         shadowColor: 'transparent',
         elevation: 0,
     },
    

提交回复
热议问题