Ion-slide-box using ng-repeat

I have an ion-slide-box and I’m using ng-repeat to set a list of itens inside it. But when I add the itens to ng-repeat first it shows in the screen a simple list and then after a couple of seconds it renders and shows the itens inside the slide box. Is it a normal behavior?
Example:
<ion-slide-box show-pager="false"> <ion-slide ng-repeat="item in items"> <div class="row"> <div class="col col-25 col-offset-10"> <i style="font-size:4.5em;" ></i> </div> <div class="col col-offset-10 col-center"> <p><h2>{{item.descricao}}</h2></p> <p> <span> {{ item.status }} </span> </p> </div> </div> </ion-slide> </ion-slide-box>