Button not showing

Hello im having a problem when I try to add a button to one of my ion-item

      <ion-item no-lines>
        <ion-checkbox [(ngModel)]="filterTime" (ngModelChange)="processChange()" class="noclick"></ion-checkbox>
        <ion-label class="my-label">
          devices timeout
        </ion-label>
        <button ion-button> Sort </button>
      </ion-item>

The button is not showing, will try to use a grid to see if it’s the problem, will update the post if I find the answer

resolved it by using

  <ion-item no-lines>
        <ion-checkbox [(ngModel)]="filterTime" (ngModelChange)="processChange()" class="noclick"></ion-checkbox>
        <ion-label item-start class="my-label">
          devices timeout
        </ion-label>
        <button ion-item item-end (click)="buttonClick()"> Sort </button>
      </ion-item>