4
Hello, I’m developing an app and on this screen I’m picking up data from a json, so I have to use ng-repeat, only this way I can’t use the css styles, because it doesn’t accept div or other way(at least as I tried).
<ion-list>
<ion-item>
<a class="item item-avatar" ng-repeat="x in names|orderBy:'Name'" href="#">
<img ng-src="{{x.Image}}">
<h2>{{x.Name}}</h2>
<p> {{x.Local}}</p>
</a>
</ion-item>
</ion-list>