Greetings.
i’m trying to make the transparent header with the fullscreen content (so the content must be visible “under” the header).
For some reason it seems like fullscreen
property is simply now working.
here is the html:
<ion-header no-border>
<!--<nav-header-text [title]="item.itemTitle" [isTransparent]="true"></nav-header-text>-->
<ion-navbar color='light' transparent>
<ion-title left>
Title Here
</ion-title>
</ion-navbar>
</ion-header>
<ion-content fullscreen>
<ion-slides pager="true" zoom="true">
<ion-slide *ngFor="let img of item.itemImages">
<s3-image [imgName]="img" [imgType]="imgType.Active"></s3-image>
</ion-slide>
</ion-slides>
</ion-content>
and thats how it shown.
Apparently, the content is not fullscreen
.
What am i doing wrong?
(same method as mentioned here https://yannbraga.com/2017/03/16/how-to-transparent-header-ionic2/)