react-native-parallax-scroll-view icon indicating copy to clipboard operation
react-native-parallax-scroll-view copied to clipboard

Apply shadow for sticky | fixed header

Open tandat2209 opened this issue 5 years ago • 1 comments

I tried to apply the shadow for the header by setting shadow | elevation.

I have to remove the overflow: 'hidden' to make it work. And It worked on iOS, but the elevation on Android does not work.

Is there a way so that I can apply it?

https://github.com/i6mi6/react-native-parallax-scroll-view/blob/master/src/styles.js#L25

tandat2209 avatar Nov 23 '18 06:11 tandat2209

EDIT: Nevermind, this only works on specific background styles, so even the hack proposed below barely works

Kinda cheesy solution but you can set the styled height on the header 10px less than the actual height to show shadows and elevation.

so if the stickyHeaderHeight in my props is 80, I set the styles of the view in my renderStickyHeader header height to 70

unfrgivn avatar Apr 29 '19 20:04 unfrgivn