i tried first to make this 200 photos i get from api with slide-box and ng-repeat each slide, but really slow, seems they take too much memory and stuff. So i found here that better to use collection-repeat, then i tried putting that inside the slide-box but then was this problem that i had to get rid of the scroll for it supposly to work, but then i needed overflow-scroll for it to work not sure why.
so at the end i stopped fighting a collection-repeat inside an slide-box and decided to better use only collection repeat like this:
> <div id="horizontal">
> <ion-scroll direction="x" delegate-handle="isde" class="item wide-item" ng-style="{'height': '1024px'}">
> <div class="item" collection-repeat="producto in productos" collection-item-width="'100%'" collection-item-height="'100%'"
> <img ng-src="{{producto['image_url']}}"/>
> </div>
> </ion-scroll>
> </div>
it shows but its difficult to drag to the next one, in order to work i have to put both fingers. any workarounds?
i found this helpfull: https://github.com/Favorhood/directory
i am using according to bower.json driftyco/ionic-bower#1.0.0-beta.9.
thanks in advance any help.