I have the following layout
ion-tabs > ion-tab > ion-nav-view > ion-view > ion-header-bar
for some reason the ion-header-bar is not displaying (seems to be overlapped by the Nav Bar). Looks like the header bar is getting top 0px instead of 50px to account for the Nav bar being there.
Codepen : http://codepen.io/paulpatarinski/pen/MaYVgr
Is this a bug or am I doing something wrong?
You can fix it like this:
.bar-subheader.has-tabs-top{
top:93px !important;
}
.has-subheader.has-tabs-top{
top:137px;
}
It’s a known issue, discussed in this post:
Great job Just one concern. Sub-header is not working in android for tabs. It gets hidden under tabs because now for android tabs only show up at the top. So I am wondering how do I show the subheader which otherwise shows perfectly ok for iOS . ...
Reading time: 3 mins 🕑
Likes: 17 ❤
I see you opened an issue for it, thank you.
https://github.com/driftyco/ionic/issues/4336
Thanks a lot. Put in the fix and it works. How can I mark this resolved?