I want to produce the right arrow that is against each of the items in the example here http://ionicframework.com/docs/components/#item-icons
Now i have my html which looks like this
<div class="list">
<div ng-repeat="item in itemList | filter: filterText">
<a class="item item-thumbnail-left item-icon-right" href="#/blah/{{item.id}}/0">
<img ng-if="item.imageUri.length > 0" src="{{ item.imageUri }}" />
<p class="name">{{item.name}}</p>
<p>{{item.notes}}</p>
</a>
</div>
<div ng-if="itemList.length == 0">
<div class="item">No matching records found</div>
</div>
</div>
But i seem to never get a arrow pointing to the right? Anyone else experiencing this problem??