React Navigation - Gradient color for Header

后端 未结 4 968
爱一瞬间的悲伤
爱一瞬间的悲伤 2020-12-29 08:49

I am using React Navigation in React Native app and I want to change the backgroundColor for the header to be gradient and I found out there is a node module :

4条回答
  •  臣服心动
    2020-12-29 09:33

    Just for your information, now with headerBackground props it's a way easier.

    You can have a gradient header just doing this :

    navigationOptions: {
      headerBackground: (
        
      ),
      headerTitleStyle: { color: '#fff' },
    }
    

    This solution works good even with SafeArea for IosX

提交回复
热议问题