jquery - How do I hide the tabs in Ionic Framework -
i chose ionic tab view can use templating system can't remove tabs. want view , did manage remove header bar cant remove tabs bar

this got far:

if hide tabs bar (ion-tabs{display:none}) removes content, not want.
have @ ionic tab documentation:
to hide tabbar still show content, add "tabs-item-hide" class.
so change this:
<div class="tabs">   <a class="tab-item" href="#">     home   </a>   ... </div> to this:
<div class="tabs tabs-item-hide">   <a class="tab-item" href="#">     home   </a>   ... </div> 
Comments
Post a Comment