-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdata.dart
106 lines (105 loc) · 2.38 KB
/
data.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
import 'package:expenses_tracker/utils/constants/colors.dart';
import 'package:expenses_tracker/utils/constants/texts.dart';
import 'package:flutter/material.dart';
List<Map<String, dynamic>> transactionsData = [
{
'icon': const Icon(
Icons.food_bank_outlined,
color: EColors.white,
),
'color': EColors.food,
'name': ETexts.food,
'amount': ETexts.foodExpense,
'date': ETexts.today,
},
{
'icon': const Icon(
Icons.shopping_cart,
color: EColors.white,
),
'color': EColors.shopping,
'name': ETexts.shopping,
'amount': ETexts.shoppingExpense,
'date': ETexts.today,
},
{
'icon': const Icon(
Icons.mode_of_travel_outlined,
color: EColors.white,
),
'color': EColors.travel,
'name': ETexts.travel,
'amount': ETexts.travelExpense,
'date': ETexts.today,
},
{
'icon': const Icon(
Icons.health_and_safety_outlined,
color: EColors.white,
),
'color': EColors.health,
'name': ETexts.health,
'amount': ETexts.healthExpense,
'date': ETexts.yesterday,
},
{
'icon': const Icon(
Icons.celebration,
color: EColors.white,
),
'color': EColors.entertainment,
'name': ETexts.entertainment,
'amount': ETexts.entertainmentExpense,
'date': ETexts.yesterday,
},
{
'icon': const Icon(
Icons.pets,
color: EColors.white,
),
'color': EColors.petShop,
'name': ETexts.petShop,
'amount': ETexts.petShopExpense,
'date': ETexts.yesterday,
},
{
'icon': const Icon(
Icons.home,
color: EColors.white,
),
'color': EColors.home,
'name': ETexts.home,
'amount': ETexts.homeExpense,
'date': ETexts.yesterday,
},
{
'icon': const Icon(
Icons.food_bank_outlined,
color: EColors.white,
),
'color': EColors.netflixYouTube,
'name': ETexts.netflix,
'amount': ETexts.netflixExpense,
'date': ETexts.today,
},
{
'icon': const Icon(
Icons.food_bank_outlined,
color: EColors.white,
),
'color': EColors.netflixYouTube,
'name': ETexts.youtube,
'amount': ETexts.youtubeExpense,
'date': ETexts.today,
},
{
'icon': const Icon(
Icons.food_bank_outlined,
color: EColors.white,
),
'color': EColors.netflixYouTube,
'name': ETexts.spotify,
'amount': ETexts.spotifyExpense,
'date': ETexts.today,
},
];