hi, i am trying to add search bar in the header , thats only as an icon when clicked the searchbar should appear/expand in place of ion-header title …
how can I achieve this ??
.html:
<ion-header class="shrinkable">
<ion-navbar>
<button ion-button menuToggle>
<ion-icon name="menu"></ion-icon>
</button>
<ion-title>
Jobs
</ion-title>
<ion-buttons end>
<button ion-button end icon-only (click)="seachbar()">
<ion-icon name="search"></ion-icon>
</button>
</ion-buttons>
<ion-buttons end>
<button ion-button end icon-only (click)="presentPopover($event)">
<ion-icon name="more"></ion-icon>
</button>
</ion-buttons>
</ion-navbar>
</ion-header>