rn-sliding-up-panel
rn-sliding-up-panel copied to clipboard
[Example Code] MapBox README gif example
Issue Description
Could you please share the minimum code that would work similar to the MapBox GIF placed on README
? This one:
https://raw.githubusercontent.com/octopitus/rn-sliding-up-panel/master/demo/sliding_panel.gif
I have been trying to achieve similar layout but in my case SlidingUpPanel
never renders when it's in position: absolute
I'd love to see this code too!
It's pretty straight forward. The key is you should put the panel below most the components hierarchy. No need for positioning.
render() {
return (
<>
<MapView />
<SlidingUpPanel />
</>
)
}
Yeah I figured out why mine was operating weirdly yesterday - as soon as i removed a bottom tab bar everything worked as it should