data.dart 3.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. import 'package:flutter/material.dart';
  2. final List items = [
  3. {
  4. 'type': 'Foods & Drinks',
  5. 'color': Color(0xffCCA600),
  6. 'smallText': 'Fresh smoked tuna with traditional recipe ...',
  7. 'longText':
  8. 'Fresh tuna meat prepared with traditional recipes from Nort Maluku. All recipes mixed together ...',
  9. 'image': 'assets/images/food.png',
  10. },
  11. {
  12. 'type': 'Services',
  13. 'color': Color(0xff90D8F9),
  14. 'smallText': 'Fresh smoked tuna with traditional recipe ...',
  15. 'longText':
  16. 'Fresh tuna meat prepared with traditional recipes from Nort Maluku. All recipes mixed together ...',
  17. 'image': 'assets/images/service.png'
  18. },
  19. {
  20. 'type': 'Additional',
  21. 'color': Color(0xffAACEE0),
  22. 'smallText': 'Fresh smoked tuna with traditional recipe ...',
  23. 'longText':
  24. 'Fresh tuna meat prepared with traditional recipes from Nort Maluku. All recipes mixed together ...',
  25. 'image': 'assets/images/additional.png'
  26. },
  27. {
  28. 'type': 'First Aid',
  29. 'color': Color(0xffFF1111),
  30. 'smallText': 'Fresh smoked tuna with traditional recipe ...',
  31. 'longText':
  32. 'Fresh tuna meat prepared with traditional recipes from Nort Maluku. All recipes mixed together ...',
  33. 'image': 'assets/images/firstaid.png'
  34. },
  35. {
  36. 'type': 'Ticket',
  37. 'color': Color(0xff5ED8F6),
  38. 'smallText': 'Fresh smoked tuna with traditional recipe ...',
  39. 'longText':
  40. 'Fresh tuna meat prepared with traditional recipes from Nort Maluku. All recipes mixed together ...',
  41. 'image': 'assets/images/ticket.png'
  42. },
  43. {
  44. 'type': 'Vacation',
  45. 'color': Color(0xffCCA600),
  46. 'smallText': 'Fresh smoked tuna with traditional recipe ...',
  47. 'longText':
  48. 'Fresh tuna meat prepared with traditional recipes from Nort Maluku. All recipes mixed together ...',
  49. 'image': 'assets/images/vacation.png'
  50. },
  51. {
  52. 'type': 'Transportation',
  53. 'color': Color(0xffCCA600),
  54. 'smallText': 'Fresh smoked tuna with traditional recipe ...',
  55. 'longText':
  56. 'Fresh tuna meat prepared with traditional recipes from Nort Maluku. All recipes mixed together ...',
  57. 'image': 'assets/images/transportation.png'
  58. },
  59. {
  60. 'type': 'First Aid2',
  61. 'color': Color(0xffFF1111),
  62. 'smallText': 'Fresh smoked tuna with traditional recipe ...',
  63. 'longText':
  64. 'Fresh tuna meat prepared with traditional recipes from Nort Maluku. All recipes mixed together ...',
  65. 'image': 'assets/images/firstaid.png'
  66. },
  67. {
  68. 'type': 'Foods & Drinks2',
  69. 'color': Color(0xffCCA600),
  70. 'smallText': 'Fresh smoked tuna with traditional recipe ...',
  71. 'longText':
  72. 'Fresh tuna meat prepared with traditional recipes from Nort Maluku. All recipes mixed together ...',
  73. 'image': 'assets/images/food.png'
  74. },
  75. {
  76. 'type': 'Services2',
  77. 'color': Color(0xff90D8F9),
  78. 'smallText': 'Fresh smoked tuna with traditional recipe ...',
  79. 'longText':
  80. 'Fresh tuna meat prepared with traditional recipes from Nort Maluku. All recipes mixed together ...',
  81. 'image': 'assets/images/service.png'
  82. },
  83. {
  84. 'type': 'Additional2',
  85. 'color': Color(0xffAACEE0),
  86. 'smallText': 'Fresh smoked tuna with traditional recipe ...',
  87. 'longText':
  88. 'Fresh tuna meat prepared with traditional recipes from Nort Maluku. All recipes mixed together ...',
  89. 'image': 'assets/images/additional.png'
  90. },
  91. ];