Ionic Infinite Scroll Doesn't Work On All Android Devices
I'm currently developing an ionic app and successfully implemented an infinite scroll feature. It works fine on desktop browsers and newer android devices, however, i'm having prob
Solution 1:
Use collection-repeat
instead of ng-repeat
. It doesn't seem like Ionic with ng-repeat
refreshes the view.
Solution 2:
I have found a workaround... Change from this
<ion-content>
to
<ion-content overflow-scroll='false'>
to disable native scrolling in this particular view.
Post a Comment for "Ionic Infinite Scroll Doesn't Work On All Android Devices"