I am just getting started with ionic but I want to have one page that has tabs, and on the rest of the pages, I do not want them. I tried this:
<ion-view title="Places">
<ion-nav-buttons side="left">
<button menu-toggle="left" class="button button-icon icon ion-navicon"></button>
</ion-nav-buttons>
<ion-content class="has-header">
<ion-list>
<ion-refresher
pulling-text="Pull to refresh..."
on-refresh="doRefresh()">
</ion-refresher>
<ion-item ng-repeat="place in places" href="#/app/place/{{playlist.id}}">
<div class="image-left"></div>{{place.title}}
</ion-item>
</ion-list>
</ion-content>
<ion-tabs class="tabs-positive tabs-icon-only">
<ion-tab title="List" icon-on="ion-social-buffer" icon-off="ion-social-buffer"></ion-tab>
<ion-tab title="Map" icon-on="ion-ios7-location" icon-off="ion-ios7-location-outline"></ion-tab>
</ion-tabs>
</ion-view>
But it does not show the content, if I move it inside of the it does not show the icons. Please advise. Thanks