I am learning react native and in all the tutorials i see ListView has been used with only 1 items per row. I have not used ListView, though. I have only 6 items that has to
You can use a FlatList and set to it the numColumns={2} prop and style={{ flexDirection: 'column' }}.
In my case I'm working with 3 cols:
FlatList with numColumns={3}