Add a timer #750
-
Hello, I'm looking for a way to add a decreasing timer without using any time.sleep(), |
Beta Was this translation helpful? Give feedback.
Answered by
FeodorFitsner
Dec 22, 2022
Replies: 2 comments 3 replies
-
I use something like this. I cannot share the code I did, but it's close. https://stackoverflow.com/questions/45419723/python-timer-with-asyncio-coroutine |
Beta Was this translation helpful? Give feedback.
2 replies
-
See the last example here: https://flet.dev/docs/guides/python/user-controls It uses |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
Soif2Sang
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
See the last example here: https://flet.dev/docs/guides/python/user-controls It uses
time.sleep()
though, but why would you like to avoid it?