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
The correct way to do it would be with flexBasis, with a value set to (1/n)% where n is the desired # of rows > 0. For two rows:
flexBasis
(1/n)%
n
.parent { flex: 1; flexWrap: 'wrap'; flexDirecton: 'row'; } .child { flexBasis: '50%'; }