Hi,
Is it possible to hide the clear button in the ion-searchbar component. I am getting an issue because of that button and I would like to hide it.
Thank you.
Hi,
Is it possible to hide the clear button in the ion-searchbar component. I am getting an issue because of that button and I would like to hide it.
Thank you.
I think you can try:
.searchbar-clear-icon {
display: none !important;
}
This is not working on Ionic 5.
ion-searchbar {
::ng-deep {
.searchbar-clear-icon {
display: none !important;
}
}
}