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?
Chunk it.
Since Ionic is Angular under the hood, take a look at this post, it should solve it for you.
Check this
<div class="row">
<div class="col">.col</div>
<div class="col">.col</div>
<div class="col">.col</div>
<div class="col">.col</div>
<div class="col">.col</div>
</div>