How can I view image two columns per row with nativescript-vue by using RadListView, as picture below:
Asked
Active
Viewed 279 times
0
-
Use [Grid item layout](https://docs.nativescript.org/vuejs/ns-ui/ListView/item-layouts#radlistview-item-layouts) in RadListview and set the span count to 2. – Manoj Apr 25 '19 at 15:17
1 Answers
2
Like Monoj answered in the comment here a little example:
<RadListView ref="mylistView"
for="item in items"
layout="grid"
gridSpanCount="2">
<v-template>
...
</v-template>
</RadListView>

TeHa
- 171
- 8