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?
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?
You can provide extra property numColumns={2} in your Flatlist component to get two items each row.
here is a wonderful tutorial by Spencer: https://www.reactnativeschool.com/react-native-flatlist-grid
<FlatList
numColumns={2}
....................
/>
Render your data and make numColumns={2}
You have to use the numColumns prop of the flat list which would display the items in columns