iOS adding unwanted scrolling

When the content is not overflowing the scrollbar still appears in iOS. How do I get rid of it?

Even on a screen as simple as,

<ion-header>
 <ion-navbar>
  <ion-title> Title </ion-title>
 </ion-navbar>
</ion-header>
<ion-content>
  Hello
</ion-content>

Fixed with,

<ion-content no-bounce>

1 Like