The scroll list is not sensitive enough

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>

Hey @wanxsb,

Our Android scroll support is not great yet. I am working on a few anrdoid specific things right now to improve it.

You could try <content overflow-scroll="true"> but there is an issue out for fixing some issues with that.

Stay tuned and hopefully we will have lots of these Android issues fixed next week.