-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflutter.json
More file actions
44 lines (44 loc) · 1.01 KB
/
flutter.json
File metadata and controls
44 lines (44 loc) · 1.01 KB
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
{
"todoList": [
{
"id": 1,
"title": "Buy groceries",
"description": "Milk, Eggs, Bread, and Fruits",
"dueDate": "2025-05-04",
"completed": false,
"priority": "High"
},
{
"id": 2,
"title": "Finish project report",
"description": "Complete the final draft of the graphics and rendering paper",
"dueDate": "2025-05-06",
"completed": false,
"priority": "Medium"
},
{
"id": 3,
"title": "Call the bank",
"description": "Discuss credit card statement issues",
"dueDate": "2025-05-03",
"completed": true,
"priority": "Low"
},
{
"id": 4,
"title": "Workout",
"description": "Gym session at 8 PM",
"dueDate": "2025-05-03",
"completed": false,
"priority": "Medium"
},
{
"id": 5,
"title": "Book doctor appointment",
"description": "Annual check-up booking",
"dueDate": "2025-05-05",
"completed": false,
"priority": "High"
}
]
}