1
When using the ION-ITEM directive within ION-LIST, it is not possible to click on any element inside, e.g.: a text field (input), when testing with the iOS emulator in Chrome.
<ion-list class="list-form">
<ion-item tappable>
<ion-label floating>
<ion-icon name="mail" item-start class="text-white"></ion-icon>
Email
</ion-label>
<ion-input type="email" formControlName="email"></ion-input>
</ion-item>
<ion-item>
<ion-label floating>
<ion-icon name="lock" item-start class="text-white"></ion-icon>
Senha
</ion-label>
<ion-input type="password" formControlName="password"></ion-input>
</ion-item>
</ion-list>
You want to click on the items?
– Cassio Alves
yes, on android and web browser works, only on iOS that does not.
– mcamara