Hello,
I just start using ionic framework, and create a project with ‘ionic start myApp blank’.
Then I put a tabs inside the index.html, with ‘tabs-top’ class. And there is a 44px empty space between header and the tabs.
<body ng-app="starter">
<ion-pane>
<ion-header-bar class="bar-stable">
<h1 class="title">Ionic Blank Starter</h1>
</ion-header-bar>
<ion-content>
<ion-tabs class="tabs-top tabs-icon-top tabs-color-active-positive">
<ion-tab title="Status" icon-off="ion-ios7-pulse" icon-on="ion-ios7-pulse-strong">
</ion-tab>
<ion-tab title="Chats" icon-off="ion-ios7-chatboxes-outline" icon-on="ion-ios7-chatboxes">
</ion-tab>
</ion-tabs>
</ion-content>
</ion-pane>
</body>
How to remove the white space?
Thanks,
Rong.