you could try setting the translucent property on the ion-header to true, then add the fullscreen directive to the ion-content you want to be shown to the edges
It’s curious. I was preparing a clean example to show you. However, I’ve just find out that the behaviour its different whether cordova platform its installed or not.
<ion-header>
<ion-toolbar class="bg-image">
<ion-title>
Tab One
</ion-title>
</ion-toolbar>
</ion-header>
<ion-content class="bg-image no-scroll" fullscreen="true">
<ion-card class="welcome-card">
<ion-img src="/assets/shapes.svg"></ion-img>
<ion-card-header>
<ion-card-subtitle>Get Started</ion-card-subtitle>
<ion-card-title>Welcome to Ionic</ion-card-title>
</ion-card-header>
<ion-card-content>
<p>Now that your app has been created, you'll want to start building out features and components. Check out some of the resources below for next steps.</p>
</ion-card-content>
</ion-card>
<ion-list class="bg-image no-scroll" lines="none" >
<ion-list-header>
<ion-label>Resources</ion-label>
</ion-list-header>
<ion-item href="https://beta.ionicframework.com/docs/">
<ion-icon slot="start" color="medium" name="book"></ion-icon>
<ion-label>Ionic Documentation</ion-label>
</ion-item>
<ion-item href="https://beta.ionicframework.com/docs/building/scaffolding">
<ion-icon slot="start" color="medium" name="build"></ion-icon>
<ion-label>Scaffold Out Your App</ion-label>
</ion-item>
<ion-item href="https://beta.ionicframework.com/docs/layout/structure">
<ion-icon slot="start" color="medium" name="grid"></ion-icon>
<ion-label>Change Your App Layout</ion-label>
</ion-item>
<ion-item href="https://beta.ionicframework.com/docs/theming/basics">
<ion-icon slot="start" color="medium" name="color-fill"></ion-icon>
<ion-label>Theme Your App</ion-label>
</ion-item>
</ion-list>
</ion-content>