please help me..
i'm create project with ionic. i want to display 5 column every row.
this is my code
<div class="row responsive-sm" ng-repeat="item in products">
<div class="col" >
<div class="list card" >
<div class="item">
<h2>{{item.merk}}</h2>
<p>Nine Inch Nails</p>
</div>
<div class="item item-image">
<img ng-src="http://kaerusshop.com/users/rahadian/merk/{{item.pict}}">
</div>
</div>
</div>
</div>
code above display one row to view all data
how to do it?