Encountering issues while trying to combine Onsen UI ons-sliding-menu and ons-tabbar. The goal is to have the sliding menu positioned at the top and an icon bar at the bottom. Various attempts have been made:
<body>
<ons-screen>
<ons-sliding-menu
behind-page="menu.html"
above-page="navigator1.html">
</ons-sliding-menu>
<ons-tabbar>
<ons-tabbar-item
active="true"
label="Home"
icon="home"
page="navigator1.html"></ons-tabbar-item>
<ons-tabbar-item
label="Camera"
icon="camera"
page="page2.html"></ons-tabbar-item>
<ons-tabbar-item
label="Settings"
icon="gear"
page="page3.html"></ons-tabbar-item>
</ons-tabbar>
</ons-screen>
The slider menu ceases to function once the tabbar is added.
Is there a more intricate example available?