Ion-scroll not working in ng-repeat

Hello,
I am using ion-scroll to have the middle content scrolling between header and footer. The footer has to be absolute at the bottom because contains an input text.
My problem is that the middle content doesn’t scroll despite is working the has-bouncing attribute.
Any idea ?
Thanks

p.s. I also tried to remove ion-content without solving the problem.
Here’s my code!

<ion-header-bar align-title="center" class="bar-positive">...</ion-header-bar>

<ion-content has-bouncing="false">
    <ion-scroll has-bouncing="true">
        <div ng-repeat="test in messages">
             <div>...</div>
        </div>
    </ion-scroll>
    <div class="box-send">
      <input type="text"> ...
    </div>
</ion-content>

You don’t need ion-scroll, ion-content is enough. Just remove ion-scroll and try.

1 Like