React Native, Flatlist customize with 2 item per row

Viewed 5931

How can I make my flatlist look like this? Is there any prop for this or which style I need to use to do that?

enter image description here

3 Answers
<FlatList
      numColumns={2}
     ....................
    />

Render your data and make numColumns={2}

Related