react-native-navigation的迁移库

data.js 897B

123456789101112131415161718192021222324252627282930313233
  1. export default heroes = [
  2. {
  3. title: 'Bounty Hunter',
  4. icon: require('../../../../../img/heroes/bouny_hunter.png'),
  5. primaryColor: '#f0cb3c',
  6. titleColor: '#993825'
  7. },
  8. {
  9. title: 'Templar Assasin',
  10. icon: require('../../../../../img/heroes/templar_assasin.png'),
  11. primaryColor: '#f6f6f6',
  12. titleColor: 'red',
  13. },
  14. {
  15. title: 'Oracle',
  16. icon: require('../../../../../img/heroes/oracle.png'),
  17. primaryColor: '#19b0b9',
  18. titleColor: '#a2195b'
  19. },
  20. {
  21. title: 'Earthspirit',
  22. icon: require('../../../../../img/heroes/earthspirit.png'),
  23. primaryColor: '#819c97',
  24. titleColor: 'red',
  25. },
  26. {
  27. title: 'Skywrath Mage',
  28. icon: require('../../../../../img/heroes/skywrath_mage.png'),
  29. primaryColor: '#dfb42e',
  30. titleColor: '#1e5ea6'
  31. }
  32. ];