Ion-list not scroll inside ion-tab

I have ion-list inside ion-tabs:

<ion-content>...
<ion-tabs>...
<ion-tab>...
<ion-list>...</ion-list>

why the list freeze? Couldn’t scroll it.

Solved it.

The list should be inside ui-content :wink:

Do not wrap your <ion-tabs> inside <ion-content>. It should be like this:

<ion-tabs class="tabs-icon-top tabs-positive">

  <ion-tab title="Home" icon="ion-home" href="#/tab/home">
    <ion-content class="padding">
      <p>Example of Ionic tabs. Navigate to each tab, and
      navigate to child views of each tab and notice how
      each tab has its own navigation history.</p>
      <p>
        <a class="button icon icon-right ion-chevron-right" href="#/tab/facts">Scientific Facts</a>
      </p>
    </ion-content>
  </ion-tab>

....
</ion-tabs>