yafethtb / flet-countdown-timer

A simple countdown app for desktop created with flet library for Python
GNU General Public License v3.0
3 stars 0 forks source link

sleep #2

Open syleishere opened 5 months ago

syleishere commented 5 months ago

Not sure how I came across this project on google, but I took a 5 second look at your code, and realized right away flet is an asyncio framework, so you shouldn't be using sleep, but asyncio sleep to give control back to UI.

yafethtb commented 1 month ago

Not sure how I came across this project on google, but I took a 5 second look at your code, and realized right away flet is an asyncio framework, so you shouldn't be using sleep, but asyncio sleep to give control back to UI.

Thanks. I'll consider this.