1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- import 'package:flutter/material.dart';
- final List items = [
- {
- 'type': 'Foods & Drinks',
- 'color': Color(0xffCCA600),
- 'smallText': 'Fresh smoked tuna with traditional recipe ...',
- 'longText':
- 'Fresh tuna meat prepared with traditional recipes from Nort Maluku. All recipes mixed together ...',
- 'image': 'assets/images/food.png',
- },
- {
- 'type': 'Services',
- 'color': Color(0xff90D8F9),
- 'smallText': 'Fresh smoked tuna with traditional recipe ...',
- 'longText':
- 'Fresh tuna meat prepared with traditional recipes from Nort Maluku. All recipes mixed together ...',
- 'image': 'assets/images/service.png'
- },
- {
- 'type': 'Additional',
- 'color': Color(0xffAACEE0),
- 'smallText': 'Fresh smoked tuna with traditional recipe ...',
- 'longText':
- 'Fresh tuna meat prepared with traditional recipes from Nort Maluku. All recipes mixed together ...',
- 'image': 'assets/images/additional.png'
- },
- {
- 'type': 'First Aid',
- 'color': Color(0xffFF1111),
- 'smallText': 'Fresh smoked tuna with traditional recipe ...',
- 'longText':
- 'Fresh tuna meat prepared with traditional recipes from Nort Maluku. All recipes mixed together ...',
- 'image': 'assets/images/firstaid.png'
- },
- {
- 'type': 'Ticket',
- 'color': Color(0xff5ED8F6),
- 'smallText': 'Fresh smoked tuna with traditional recipe ...',
- 'longText':
- 'Fresh tuna meat prepared with traditional recipes from Nort Maluku. All recipes mixed together ...',
- 'image': 'assets/images/ticket.png'
- },
- {
- 'type': 'Vacation',
- 'color': Color(0xffCCA600),
- 'smallText': 'Fresh smoked tuna with traditional recipe ...',
- 'longText':
- 'Fresh tuna meat prepared with traditional recipes from Nort Maluku. All recipes mixed together ...',
- 'image': 'assets/images/vacation.png'
- },
- {
- 'type': 'Transportation',
- 'color': Color(0xffCCA600),
- 'smallText': 'Fresh smoked tuna with traditional recipe ...',
- 'longText':
- 'Fresh tuna meat prepared with traditional recipes from Nort Maluku. All recipes mixed together ...',
- 'image': 'assets/images/transportation.png'
- },
- {
- 'type': 'First Aid2',
- 'color': Color(0xffFF1111),
- 'smallText': 'Fresh smoked tuna with traditional recipe ...',
- 'longText':
- 'Fresh tuna meat prepared with traditional recipes from Nort Maluku. All recipes mixed together ...',
- 'image': 'assets/images/firstaid.png'
- },
- {
- 'type': 'Foods & Drinks2',
- 'color': Color(0xffCCA600),
- 'smallText': 'Fresh smoked tuna with traditional recipe ...',
- 'longText':
- 'Fresh tuna meat prepared with traditional recipes from Nort Maluku. All recipes mixed together ...',
- 'image': 'assets/images/food.png'
- },
- {
- 'type': 'Services2',
- 'color': Color(0xff90D8F9),
- 'smallText': 'Fresh smoked tuna with traditional recipe ...',
- 'longText':
- 'Fresh tuna meat prepared with traditional recipes from Nort Maluku. All recipes mixed together ...',
- 'image': 'assets/images/service.png'
- },
- {
- 'type': 'Additional2',
- 'color': Color(0xffAACEE0),
- 'smallText': 'Fresh smoked tuna with traditional recipe ...',
- 'longText':
- 'Fresh tuna meat prepared with traditional recipes from Nort Maluku. All recipes mixed together ...',
- 'image': 'assets/images/additional.png'
- },
- ];
|