Timer
This example shows a timer that counts down from 10 to 0 every second:
Use the Timer pseudo-element to schedule a callback at a given interval.
The timer is only running when the running
property is set to true
. To stop or start the timer, set that property to true
or false
.
It can be also set to a binding expression.
When already running, the timer will be restarted if the interval
property is changed.
interval
type: duration
default: 0ms
The interval between timer ticks. This property is mandatory.
running
type: bool
default: true
true
if the timer is running. (default value: true
)
Callbacks
triggered()
Invoked every time the timer ticks (every interval
).