The FlatList component has a prop named as horizontal={} which support Boolean value True and False . The default value is False and if we define its value to True then it will make our FlatList horizontal with horizontal scrolling enabled.4 Ara 2021
Read moreHow do I create a horizontal list in react native?
Creating the list. For the list, we are using react native flatlist which is a component that is optimized to render list item. For the renderRow method in the flatList, we will use card class that we created earlier. We should now have a list of card rendered in our react native app albeit pretty static.
Read moreHow do you reload FlatList in react-native?
For quick and simple solution Try:
Read moreWhat is extraData in FlatList?
The extraData prop is used to re-render the FlatList items dynamically . So what we are doing is that we make 2 Array in our tutorial and render the FlatList using first array object.
Read moreHow do you make a FlatList horizontal?
The FlatList component has a prop named as horizontal={} which support Boolean value True and False . The default value is False and if we define its value to True then it will make our FlatList horizontal with horizontal scrolling enabled.
Read moreHow do you use FlatList in react-native class component?
React Native FlatList Component
Read more