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

后端 未结 14 1218
佛祖请我去吃肉
佛祖请我去吃肉 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

    I have been trying to solve this problem for the past couple of hours and have finally found the solution. The problem in my case was that the header was in a different Z position than the rest of the other components.

    try:

    const styles = {
      headerStyle: {
        zIndex: 1
      }
    }
    

提交回复
热议问题