I am using following html, but as I scroll down I see images being duplicated into new items.
<ion-checkbox force-refresh-images="true" item-render-buffer="20" collection-repeat="contact in contacts | filter:filtersText" ng-model="contact.selected" class="item-avatar item-checkbox-right checkbox-energized">
<img ng-src="{{contact.photos[0].value}}">
<h2 ng-if="contact.name && contact.name.formatted">{{contact.name.formatted}} </h2>
<p>{{contact.emails[0].value}}</p>
</ion-checkbox>
Is there a solution to this?