This is standalone Todo app source code. This source code can build to run on multiple operation systems like Windows, MacOS, Linux, Android and iOS. How you can use and expand your feature.
You can Fok to your own repository or clone to your local machine by run this command on terminal or powershell
git clone https://github.com/kuth-chi/flet-todo-with-sqlite.git-
Make sure Python3+ is installed on your machine
- Using "Terminal" or "PowerShell"
python --version
Should be display "Python 3.xx.x" It mean you have installed Python. If not, you can Download from HERE
- Using "Terminal" or "PowerShell"
-
Create Python Virtual Environment:
- Run command below on your "Terminals" or "PowerShell"
python -m venv .venv
- Activate virtual environment by command: ```shell .venv\Scripts\activate.ps1on Windows
source venv/bin/activateon MacOS
- Run command below on your "Terminals" or "PowerShell"
-
After Virtual Environment is activated
- From the project directory Project: |--> .venv |--> app.py |--> requirements.txt |--> todo.db
- You need to install project requirement libraries by run command below
wait until complete installation Let run command
pip install -r requirements.txt
flet run -r --app.py
Enjoy continue developing !
