How to add a button at the right side of the item?

Ionic 2 changes a lot but it is difficult to find the right document because it’s still in beta. Can anybody suggestion what I should do so that my button is at the right side of the ion-item?

The item-button-right doesn’t work.

Thanks.

@zhouhaowowtv

may be this can help you add this style on your button in template

style="float:right; position:relative; "
or
style="right:10px; position:absolute;"

Thanks. But I found an easy one:

<button clear item-right (click)="click()">
    Upload <ion-icon ios="ios-add-outline" md="md-circle"></ion-icon>
</button>