How to add icon button label and input together in single line?

0
down vote
favorite
In fallowing code I have try to add 3 element together but it fails and button is not showing in output

<ion-content>
  <ion-item>
    <ion-label fixed>Origin</ion-label>
    <ion-input type="text" value=""></ion-input>
    <ion-buttons end>
      <button ion-button icon-only>
        <ion-icon name="locate"></ion-icon>
      </button>
    </ion-buttons>
  </ion-item>

  <ion-item>
    <ion-label fixed>Target</ion-label>
    <ion-input type="text" value=""></ion-input>
    <ion-buttons end>
      <button ion-button icon-only>
        <ion-icon name="locate"></ion-icon>
      </button>
    </ion-buttons>
  </ion-item>
<button ion-button full>Start</button>
</ion-content>

it shows each item separately or text with label together but the button is not showing at the end of text box.

I think you should drop ion-buttons and add item-right in your button after ‘ion-button icon-only’