Is it possible to display an array in two columns per row using Angular directives, or will logic need to be written in the controller?
Controller:
// Unsure if additional logic is necessary here
Model:
$scope.fruits = ['apple', 'banana', 'grapes', 'lemon']
View:
<div class="row" ng-repeat="fruit in fruits">
<div class="col">{{fruits}}</div>
</div>
I am utilizing the Ionic framework for this implementation