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 :
backgroundColor
Just for your information, now with headerBackground props it's a way easier.
headerBackground
You can have a gradient header just doing this :
navigationOptions: { headerBackground: ( ), headerTitleStyle: { color: '#fff' }, }
This solution works good even with SafeArea for IosX