Hello!
I’m facing an issue, when I do ionic serve
and run it on chrome, for example, the transitions and scrolling are very smooth. But if I build it for my device (Moto G2), it’s very laggy.
How to reproduce: ionic start myApp tabs
and just add the lines below to the playlists.html:
<ion-view title="feed">
<ion-nav-buttons side="left">
<button menu-toggle="left" class="button button-icon icon ion-navicon"></button>
</ion-nav-buttons>
<ion-content class="has-header">
<ion-refresher
pulling-text="refresh...">
</ion-refresher>
<ion-item nav-transition="none" ng-repeat="playlist in playlists" class="list card" href="#/app/playlists/{{playlist.id}}">
<div class="item item-avatar">
<img ng-src="http://graph.facebook.com/{{reminder.facebook_id}}/picture">
<h2>{{playlist.title}}</h2>
<small><i class="icon ion-clock"></i>
1239123128</small>
</div>
<div class="item item-body">
<span>
asdasdasdasdaljsdhakjsdhkajsdhkajshdkajhsd <br> ahahauhuah
</span>
</div>
</ion-item>
<ion-infinite-scroll
distance="1%">
</ion-infinite-scroll>
</ion-content>
</ion-view>
Now, just build the apk via ionic build android
or ionic run android
(if you have the device plugged).
Particularly, the playlist scrolling and the transitions between playlist and its detail are laggy.
Ionic version: v1.00 rc .
Android version: Lollipop.
I really appreciate any help.