Not sure if this is a bug, so I’m posting it here.
After I seed the ionic blank app and add some placeholder text in the ion-content, I get the following when I emulate iOS (which is what I expect):
However, after I comment out the ion-header-bar, I get the following on my simulator:
This is the code excerpt:
<ion-pane>
<!-- <ion-header-bar class="bar-stable">
<h1 class="title">Ionic Blank Starter</h1>
</ion-header-bar> -->
<ion-content>
placeholder text
</ion-content>
</ion-pane>
Am I missing a CSS class? or is this an issue with ion-content?