I try to to list items in my application, but I found the list view can hard to be scrolled. I’ve test it in Huawei mobile and Xiaomi s1.
May be it’s my mistaken use of ionic. Could any one give me some advice how to make the scroll bar more sensitive.
<nav-page>
<content has-header="true" has-tabs="true">
<div class="list">
<a ng-repeat="branch in branches" class="item item-thumbnail-left" ng-href="#/branch/{{branch.id}}">
<img ng-src="{{branch.image.image_thumb}}"/>
<h2>{{branch.name}}</h2>
<p>{{branch.introduction}}</p>
<p>
<span class="padding-right">
<i class="icon ion-ios7-clock-outline"></i>{{business_state(branch)}}
</span>
<span>
<i class="icon ion-ios7-location-outline"></i>{{distance_to_me(branch)}}
</span>
</p>
</a>
</div>
</content>
</div>