A todo app built with django API and Flet
This is a desktop to-do application built with Django REST Framework and Flet.
Technologies used:
- django REST Framework
- Flet
For more info about Flet, click this
-
Open terminal and clone this repo using Git.
cd Desktop # or your preferred location git clone https://github.com/morikeli/django-flet-todo-app.git
-
Open the cloned repo in your preferred IDE or code editor, e.g VS Code.
-
Open terminal, activate a virtual environment and install Python modules.
python3 -m venv .venv # You can also use python -m venv .venv # activate virtual ennvironment source .venv/bin/activate # In windows, use .venv\Scripts\activate # install python packages using pip pip install -r requirements.txt
-
Run the app and the API
# to run development server for the API python manage.py runserver # Open a separate terminal to run the Flet application flet -r app/main.py
Once the app is executed, type a task you plan to do, in the text field. Click the "+" button to add the task. To get all scheduled tasks, click the other button with a radar icon.
The project is no longer maintained because I switched from Flet to Flu 50D6 tter. If you face any issue, kindly do research on how the problem can be solved.