Ion-list last item is difficult to reach

Hello,

I have a page with a lot of list items and the last item is very difficult to click because the footerbar overlapps the last item. Is their any possibility to get fixed it?

Hi@mdline
If you have lots of list items use Ionic Infinitescroll

It works so, I now have enough space to enter the last item.
But the list items are static and do not need an API call, approx. 20 items.
So I don’t know if I use the infinitescroll correctly?

I add only following to the template and the controller class.

  <ion-infinite-scroll (ionInfinite)="doInfinite($event)">
    <ion-infinite-scroll-content></ion-infinite-scroll-content>
  </ion-infinite-scroll>

  doInfinite(infiniteScroll) {
    infiniteScroll.complete();
  }