BangleApps/apps/todolist/README.md

64 lines
1.1 KiB
Markdown
Raw Normal View History

2022-03-13 15:52:39 +00:00
Todo List
========
This is a simple Todo List application.
2022-03-26 17:40:11 +00:00
The content is loaded from a JSON file.
A task can be marked as completed or uncompleted.
2022-03-13 15:52:39 +00:00
![](screenshot2.png)
2022-03-26 17:40:11 +00:00
Once installed, the list can be modified via the `Download data from app` icon in the [Bangle.js App Store](https://banglejs.com/apps/) (TodoList app).
![](screenshot4.png)
2022-03-13 15:52:39 +00:00
JSON file content example:
```javascript
[
{
2022-03-26 17:40:11 +00:00
"name": "Pro",
"children": [
2022-03-13 15:52:39 +00:00
{
2022-03-26 17:40:11 +00:00
"name": "Read doc",
"done": true,
"children": []
2022-03-13 15:52:39 +00:00
}
2022-03-26 17:40:11 +00:00
]
2022-03-13 15:52:39 +00:00
},
{
2022-03-26 17:40:11 +00:00
"name": "Pers",
"children": [
2022-03-13 15:52:39 +00:00
{
2022-03-26 17:40:11 +00:00
"name": "Grocery",
"children": [
{
"name": "Milk",
"done": false,
"children": []
},
{
"name": "Eggs",
"done": false,
"children": []
},
{
"name": "Cheese",
"done": false,
"children": []
}
]
2022-03-13 15:52:39 +00:00
},
2022-03-26 17:40:11 +00:00
{
"name": "Workout",
"done": false,
"children": []
},
{
"name": "Learn Rust",
"done": false,
"children": []
}
]
}
2022-03-13 15:52:39 +00:00
]
```