Published
- 1 min read
flatlist items horizontally
The solution for this is noted below
flatlist items horizontally
Solution
// Use horizontal prop in Flatlist
<FlatList
horizontal
data={yourData}
renderItem={({item})=><YourItem/>}
/>
Try other methods by searching on the site. That is if this doesn’t work