My header is scrolling, how can I stop it?

See the image below:

Can you provide a HTML example of this view?

1 Like

This is my index.html

image

And inside my list.html I heave an ion-view:

<ion-view title="title" class="home">
</ion-view>

I found out what was happening, the following code was missing in my config.xml

<feature name="StatusBar">
<param name="ios-package" value="CDVStatusBar" onload="true"/>
</feature>

Was this project made with the ionic CLI?
Normally this gets added by default

Yes it was, but I just fixed it, thanks Mike.