Skip to content Skip to sidebar Skip to footer

How Do Remove Underline In Side-menu Ionic 2

I've create a side menu. and button inside it

Solution 1:

  <ion-list no-lines>
    <button menuClose  ion-item *ngFor="let p of Func.getPages()" (click)="openPage(p, p.title)">
      {{p.title}}
    </button>
  </ion-list>

Simply by putting no-lines property in like above i had edited your code.


Post a Comment for "How Do Remove Underline In Side-menu Ionic 2"