I'm looking ti add an icon to the right of an ionic avatar list item.
My code:
<ion-item class="animated flipInX item-divider gold" ng-show="(myArray.length > 0)">My Stuff</ion-item>
<div ng-repeat="item in array">
<ion-list>
<ion-item class="animated flipInX item-avatar" ng-click="showAcceptRequest(item)">
<img ng-src={{item['Picture']}}>
<h2>{{item['SenderName']}}</h2>
<p>{{item['EntityName']}}</p>
</ion-item>
</div>
</ion-list>
This shows an avatar picture with there name and some sub-info. I'd like to add an ionicon to the right of this cell but my positioning is all off. Can someone shed some light?
Such as:
<i class="icon ion-ios-telephone-outline"></i>
JSFiddle:
http://jsfiddle.net/m3x6nb1d/8/
Basically want the icon to be level on the right of the table cell...