Skip to content

Commit f50e93a

Browse files
authored
Create flutter.json
json
1 parent 78ae0f1 commit f50e93a

1 file changed

Lines changed: 44 additions & 0 deletions

File tree

flutter.json

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
{
2+
"todoList": [
3+
{
4+
"id": 1,
5+
"title": "Buy groceries",
6+
"description": "Milk, Eggs, Bread, and Fruits",
7+
"dueDate": "2025-05-04",
8+
"completed": false,
9+
"priority": "High"
10+
},
11+
{
12+
"id": 2,
13+
"title": "Finish project report",
14+
"description": "Complete the final draft of the graphics and rendering paper",
15+
"dueDate": "2025-05-06",
16+
"completed": false,
17+
"priority": "Medium"
18+
},
19+
{
20+
"id": 3,
21+
"title": "Call the bank",
22+
"description": "Discuss credit card statement issues",
23+
"dueDate": "2025-05-03",
24+
"completed": true,
25+
"priority": "Low"
26+
},
27+
{
28+
"id": 4,
29+
"title": "Workout",
30+
"description": "Gym session at 8 PM",
31+
"dueDate": "2025-05-03",
32+
"completed": false,
33+
"priority": "Medium"
34+
},
35+
{
36+
"id": 5,
37+
"title": "Book doctor appointment",
38+
"description": "Annual check-up booking",
39+
"dueDate": "2025-05-05",
40+
"completed": false,
41+
"priority": "High"
42+
}
43+
]
44+
}

0 commit comments

Comments
 (0)