antoniocasero / Panels

Panels is a framework to easily add sliding panels to your application
MIT License
1.5k stars 89 forks source link

Show the Panels on top of a TabBar #5

Closed matiaz closed 5 years ago

matiaz commented 5 years ago

Is it possible to show/present a panel from a view controller that is in a TabBar? I want to show a Panel and present it on top of the TabBar. Thanks

antoniocasero commented 5 years ago

Sure, Panels is only dependent on the view where is added to. If the bottom layout is above to the TabBar, then your panel will appear on top of the TabBar. If the view is behind the TabBar, then you could use the property panelMargin to place panels properly on top of it.

matiaz commented 5 years ago

Interesting, I'll to do that. thanks