Guest User

Untitled

a guest
Feb 23rd, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. <FlatList style={{margin:5}}
  2. data={this.state.items}
  3. numColumns={5}
  4. keyExtractor={(item, index) => item.id }
  5. renderItem={(item) => <Card image={item.item.gallery_image_url} text={item.item.name}/> }
  6. />
  7.  
  8. apple
  9. peter
  10. joyce
  11. tommy
  12.  
  13. apple
  14. ben
  15. roy
  16. mary
  17.  
  18. |a p p l e|
  19. |b e n x x|
  20. |r o y x x|
  21. |m a r y x|
  22.  
  23. |apple |
  24. |ben |
  25. |roy |
  26. |mary |
Add Comment
Please, Sign In to add comment