I am using React Navigation v5. I try to add some vertical margins for my header. This is what I tried:
navigation.setOptions({
headerStyle: {
backgroundColor: '#f4511e',
marginVertical: 10
},
headerTitleContainerStyle: {
marginVertical: 10,
},
headerTitleStyle: {
marginVertical: 10,
},
})
I hoped at least one of the above style options can have some effect, but my header has no vertical margin still. How to add vertical margin to my navigation header?
Another question is that I would like to show a bottom line of my header, how to do that?