I want to change back button icon from < to * in specific page . What to do ?
1 Like
hi @anuj14,
did you find a solution to this?
I did by removing default back button icon and put one icon there with some css
1 Like
What about this:
<ion-navbar>
<ion-buttons start>
<button ion-button icon-only>
<ion-icon name="arrow-back"></ion-icon>
</button>
</ion-buttons>
</ion-navbar>
thanks . will check ur code
.