Reputation: 361
i am created an app UI with ionic creator and am trying to add new page in ionic application manually but it display without header and all other pages are displaying with header. thanks in advance.
Upvotes: 2
Views: 612
Reputation: 994
Hello try this code in your html page.
<ion-view view-title="Welcome" class="padding" hide-nav-bar="true">
<ion-content padding="false">
</ion-content>
</ion-view>
Upvotes: 2