Show Scrollbar

Hi,

I have a simple ion-list and the scrollbar is not showing.
How can I show it ?

Thanks

1 Like

How many items there are in your list? It should show as default.

Can you show us the code or example?

Sorry for the late answer.
I have tried with 15, 50 or 1000 items, no scrollbar.
Relevant template code:

<ion-content class="home">
  <ion-list>
    <ion-item *ngFor="let person of dbPeople">
      <ion-avatar item-left>
        <img src="{{person.avatarUrl}}"/>
      </ion-avatar>
      <h2>{{person.firstname}} {{person.lastname}}</h2>
    </ion-item>
  </ion-list>  
</ion-content>

Any idea of what could go wrong ?