data.dart 3.6 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 North Maluku. All recipes mixed together ...',
  9. 'image': 'assets/images/food.png',
  10. },
  11. {
  12. 'type': 'Services',
  13. 'color': Color(0xff90D8F9),
  14. 'smallText': 'Great services with bla bla bla ...',
  15. 'longText':
  16. 'Great services with great service with great service with great service with great service with ...',
  17. 'image': 'assets/images/service.png'
  18. },
  19. {
  20. 'type': 'Additional',
  21. 'color': Color(0xffAACEE0),
  22. 'smallText': 'Additional service with bla bla bla ...',
  23. 'longText':
  24. 'Additional service with additional service with additional service with additional service with additional service with ...',
  25. 'image': 'assets/images/additional.png'
  26. },
  27. {
  28. 'type': 'First Aid',
  29. 'color': Color(0xffFF1111),
  30. 'smallText': 'First Aid with bla bla bla ...',
  31. 'longText':
  32. 'First Aid service with first Aid service with first Aid service with first Aid service with first Aid service with ...',
  33. 'image': 'assets/images/firstaid.png'
  34. },
  35. {
  36. 'type': 'Ticket',
  37. 'color': Color(0xff5ED8F6),
  38. 'smallText': 'Ticket service with ...',
  39. 'longText':
  40. 'Ticket service with ticket service with ticket service with ticket service with ticket service with ticket service with ...',
  41. 'image': 'assets/images/ticket.png'
  42. },
  43. {
  44. 'type': 'Vacation',
  45. 'color': Color(0xffCCA600),
  46. 'smallText': 'Vacation service with ...',
  47. 'longText':
  48. 'Vacation service with vacation service with vacation service with vacation service with vacation service with vacation service with ...',
  49. 'image': 'assets/images/vacation.png'
  50. },
  51. {
  52. 'type': 'Transportation',
  53. 'color': Color(0xffCCA600),
  54. 'smallText': 'Transportation service with ...',
  55. 'longText':
  56. 'Transportation service with transportation service with transportation service with transportation service with transportation service with ...',
  57. 'image': 'assets/images/transportation.png'
  58. },
  59. {
  60. 'type': 'Bathtub',
  61. 'color': Color(0xffFF1150),
  62. 'smallText': 'Bathtub service with ...',
  63. 'longText':
  64. 'Bathtub service with bathtub service with bathtub service with bathtub service with bathtub service with bathtub service with bathtub service with ...',
  65. 'image': 'assets/images/bathtub.png'
  66. },
  67. {
  68. 'type': 'Danger',
  69. 'color': Color(0xffCCA600),
  70. 'smallText': 'Danger service with ...',
  71. 'longText':
  72. 'Danger service with danger service with danger service with danger service with danger service with danger service with danger service with danger service with ...',
  73. 'image': 'assets/images/danger-sign.png'
  74. },
  75. {
  76. 'type': 'Database',
  77. 'color': Color(0xff90D8F9),
  78. 'smallText': 'Database service with ...',
  79. 'longText':
  80. 'Database service with database service with database service with database service with database service with database service with database service with database service with ...',
  81. 'image': 'assets/images/database.png'
  82. },
  83. {
  84. 'type': 'Noise',
  85. 'color': Color(0xffAACEE0),
  86. 'smallText': 'Noise service with ...',
  87. 'longText':
  88. 'Noise service with noise service with noise service with noise service with noise service with noise service with noise service with noise service with noise service with noise service with ...',
  89. 'image': 'assets/images/noise-pollution.png'
  90. },
  91. ];