Input with button in list

I have a list of inputs and whant to place a button right after each input. Is there any way to do this?
image
Simmilar to this one.

The inplace editor component I posted in here has that functionality.

Yes,thank you, I used your component as example :slight_smile: Solutions for my task is:

<ion-item>
    <ion-label >Label</ion-label>
    <ion-input type="text"  readonly="true"></ion-input>
    <div class="buttons" item-right>
      <button ion-button >
        Go!
      </button>
    </div>
  </ion-item>
1 Like