Hello guys.
Does anybody know how to remove this shadow in android?
3 Likes
.header-md::after {
display: none;
}
Should do it
5 Likes
The correct solution is add “no-border” attribute on your ion-header tag:
Check out the documentation.
16 Likes
Update to ionic v5:
<ion-header class="ion-no-border">
<ion-toolbar>
<ion-title>Header</ion-title>
<ion-toolbar>
</ion-header>
8 Likes
Using React:
<IonHeader className="ion-no-border">
...
</IonHeader>
2 Likes