https://github.com/snoopycodex/flet_todo_app
A simple todo app that is made using flet
https://github.com/snoopycodex/flet_todo_app
flet python todo-app
Last synced: 6 months ago
JSON representation
A simple todo app that is made using flet
- Host: GitHub
- URL: https://github.com/snoopycodex/flet_todo_app
- Owner: SnoopyCodeX
- Created: 2023-10-04T05:31:01.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2023-10-04T05:32:55.000Z (over 2 years ago)
- Last Synced: 2025-01-23T15:37:49.688Z (about 1 year ago)
- Topics: flet, python, todo-app
- Language: Python
- Homepage: https://snoopycodex-flet-todo-app.fly.dev
- Size: 76.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Simple TODO App using Flet
This is a simple todo application that is made using [Flet](https://flet.dev)
## Previews
|  |  |
|---------------------------------------------|-------------------------------------------|
| Light Mode | Dark Mode |
## Features
- [x] Create, Edit and Delete tasks
- [x] Delete completed tasks
- [x] Track current progress in percentage
- [x] Supports light mode and dark mode
- [x] Persists tasks locally
- [x] Filter tasks by status
## Building
Install `flet`
```bash
pip install flet
```
Run in hot-reload mode (does not work in web)
```bash
flet run main.py -r
```
To run in android, see the docs [here](https://flet.dev/docs/guides/python/testing-on-android)
To run in ios, see the docs [here](https://flet.dev/docs/guides/python/testing-on-ios)
## Packaging as a desktop app
Install `pyinstaller` dependency
```bash
pip install pyinstaller
```
Then run
```bash
flet pack main.py
```
The bundled flet app would be in the generated `dist` folder.
For more information regarding this, visit the docs [here](https://flet.dev/docs/guides/python/packaging-desktop-app).