Ionic Scrolling Performance

Hi guys, I build a new app and on some screens I have large lists something like 400-700 items, this items are get from $http request and using ng-collection but on when I try to scroll the list is very slow if compare with native build, someone can help me ?

Ps: I already disable js scroll with:

$ionicConfigProvider.scrolling.jsScrolling(false);

Tks!!!

Hello,
with that big list use ng-repeat instead of collection-repeat and use one-time bindings <div> {{ ::some.things }} </div> or <div ng-bind="::some.things"> </div> by adding :: you will disable watchers of the element, also use $ionicConfigProvider.scrolling.jsScrolling(false); only for android because IOS handle JS scrolling very well.