I tried creating a navigation bar using ionic-nav-bar
and added an h1
element with the class title
, but unfortunately, it's not showing anything on the screen.
Below is the code I used:
<ion-pane>
<ion-nav-bar class="bar-stable">
<h1 class="title">Ionic Blank Starter</h1>
</ion-nav-bar>
<ion-content>
</ion-content>
</ion-pane>
Surprisingly, this code works perfectly fine:
<ion-pane>
<ion-header-bar class="bar-stable">
<h1 class="title">Ionic Blank Starter</h1>
</ion-header-bar>
<ion-content>
</ion-content>
</ion-pane>
Can anyone please help me figure out what mistake I might be making?