Skip to content

Instantly share code, notes, and snippets.

@chakrihacker
Last active October 7, 2018 14:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chakrihacker/de08afbc63f2926456f86addebd1a5fe to your computer and use it in GitHub Desktop.
Save chakrihacker/de08afbc63f2926456f86addebd1a5fe to your computer and use it in GitHub Desktop.
FlatList basic
<FlatList
data={[{key: 'a'}, {key: 'b'}]}
renderItem={({item}) => <Text>{item.key}</Text>}
/>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment