0

How can I view image two columns per row with nativescript-vue by using RadListView, as picture below:

enter image description here

Narendra
  • 4,514
  • 2
  • 21
  • 38
setha va
  • 51
  • 1
  • 1
  • 3
  • 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 Answers1

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