Mackintac / py-todolist

This repository is for a personal "to-do list" project that I am using to improve my fundamentals with python.
0 stars 0 forks source link

Tkinter GUI functionality not working as expected #1

Open Ludusm11 opened 1 month ago

Ludusm11 commented 1 month ago

The Tkinter window initializes with a title, but no widgets or functionality are displayed, resulting in an empty window. The to-do list logic is handled via console input/output, but it isn't connected to the GUI. To fix this, you could add widgets like Listbox or Label to show tasks, buttons to mark tasks as done or pending, and ensure the program enters the Tkinter event loop with root.mainloop() to allow interaction with the window.

image

Mackintac commented 1 month ago

Hey! This was my initial commit after prepping the script for starting my work on it! There is no current expected functionality as I am still in the early stages of development. Regardless, I appreciate your comment and tips so you have my thanks!