Open tgoldenberg opened 8 years ago
Are you using AnimatedView
or Transitioner
? Either way, your NavigationHeader
should have a higher "z-index" as it's rendered after the scenes. A screenshot would have helped here—but also take a look at how I'm rendering the <AddressBar>
component here that has a dropdown that renders on top of all other scenes when expanded. There is also a GIF of the dropdown in action in the README.
Also see facebook/react-native/pull/7825, facebook/react-native/pull/6473
🍺
I would like to do a few things that require elements being stacked on top of the NavigationHeader (i.e. a higher z-index). For example, a dropdown menu that unfolds from the
renderRightComponent
. However, the bottom of this gets cut off. Or, a progress bar with a draggable thumb in the scene below the nav. Again, the top gets cut off by the NavigationHeader.Any suggestions? Thanks!