1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- import 'package:flutter/material.dart';
- final List items = [
- {
- 'type': 'Foods & Drinks',
- 'color': Color(0xffCCA600),
- 'image': 'assets/images/food.png'
- },
- {
- 'type': 'Services',
- 'color': Color(0xff90D8F9),
- 'image': 'assets/images/service.png'
- },
- {
- 'type': 'Additional',
- 'color': Color(0xffAACEE0),
- 'image': 'assets/images/additional.png'
- },
- {
- 'type': 'First Aid',
- 'color': Color(0xffFF1111),
- 'image': 'assets/images/firstaid.png'
- },
- {
- 'type': 'Ticket',
- 'color': Color(0xff5ED8F6),
- 'image': 'assets/images/ticket.png'
- },
- {
- 'type': 'Vacation',
- 'color': Color(0xffCCA600),
- 'image': 'assets/images/vacation.png'
- },
- {
- 'type': 'Transportation',
- 'color': Color(0xffCCA600),
- 'image': 'assets/images/transportation.png'
- },
- {
- 'type': 'First Aid',
- 'color': Color(0xffFF1111),
- 'image': 'assets/images/firstaid.png'
- },
- {
- 'type': 'Foods & Drinks',
- 'color': Color(0xffCCA600),
- 'image': 'assets/images/food.png'
- },
- {
- 'type': 'Services',
- 'color': Color(0xff90D8F9),
- 'image': 'assets/images/service.png'
- },
- {
- 'type': 'Additional',
- 'color': Color(0xffAACEE0),
- 'image': 'assets/images/additional.png'
- },
- ];
|