Cannot scroll list when gesture is attached to item

Has anybody come across this problem? I have a list, which items have a tap gesture attached, this makes the list onscrollable… As soon as i remove the gesture the list is scrollable again.

Just found this same issue myself. You’re comments gave me a solution (not necessarily an answer).

I changed the (tap)="selectCow(cow)" to (click)="selectCow(cow)" and it’s working fine.