react native elements list code example
Example 1: react native elements
Elements
npm install react-native-elements
npm i react-native-elements --save
Icons
npm i --save react-native-vector-icons
react-native link react-native-vector-icons
Example 2: react native list view
<FlatList data={yourData} renderIten={({item, index}) =>{
return (
<View key={index}>
{item.item}
</View>
)
}/>