I need Tips for OnComplete function #250
Answered
by
vydimitrov
Francaisedolon
asked this question in
Q&A
-
Hello, I search a long time for ideas or demo about this. How can I execute a function on the CircleTimer OnComplete event?
Many thanks for your tips Best Regards |
Beta Was this translation helpful? Give feedback.
Answered by
vydimitrov
Aug 6, 2024
Replies: 1 comment 1 reply
-
You can do this: <CountdownCircleTimer
isPlaying
duration={7}
onComplete={() => {
// You can call your JS function here
}}
>
{({ remainingTime }) => remainingTime}
</CountdownCircleTimer> |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
Francaisedolon
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can do this: