In the age of blooming technology, most of teens and many adults are obbsessed with social media. Our app encourages them to perform some productive or refreshing tasks instead of surfing the Internet for long periods of time.
We faced many issues and had to read the documentation of tkinter many times. The biggest issue we were facing was when we were making the timer. At first we were useing a while loop to update a label after every second, so were naturally using a sleep function for 1 second. So what it was doing was freezing the whole window after every second creating a bad feel when we're trying to move the window. But afterwards we used a inbuilt function of tkinter called .after to recursively call the function and it made the code simplier and also solved the problem.
Discussion