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

enter image description here

this got far:

enter image description here

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

Popular posts from this blog

commonjs - How to write a typescript definition file for a node module that exports a function? -

openid - Okta: Failed to get authorization code through API call -

thorough guide for profiling racket code -