When tap on the input or textarea the scroll doesn't work

When tap on the input or textarea the scroll doesn’t work.

<label for="input1">
   <input type="input1">
</label>

What version of Ionic are you using? There’s been some bug fixes on this issue.

@Calendee I’m using the latest version, v0.9.27. Thanks for your response.

Are you wrapping this inside the Ionic list items? I think that list items (because they are scrollable) are designed to ignore accidental scroll taps.

Even if you aren’t using a “real” list, you should put your form elements in them.

<div class="list">
  <label class="item item-input">
    <input type="text" placeholder="First Name">
  </label>
  <label class="item item-input">
    <input type="text" placeholder="Last Name">
  </label>
  <label class="item item-input">
    <textarea placeholder="Comments"></textarea>
  </label>
</div>