How do I hide the tabs in Ionic Framework

后端 未结 10 641
囚心锁ツ
囚心锁ツ 2020-12-08 07:44

I chose the ionic tab view so I can use the templating system but I can\'t remove the tabs. I want a view like this and I did manage to remove the header bar but I cant remo

10条回答
  •  隐瞒了意图╮
    2020-12-08 08:13

    Simple CSS override worked for me example in codepen, my requirement was to hide main tabs for child/inner views, e.g popup views + this does not affect secondary tabs:

    
    

    OR in directive example:

    angular.element(".tab-nav").css("display":"none");
    

    Dont forget:

    
    
                                                            
提交回复
热议问题