feat: timer widget with countdown, stopwatch and alarm

This commit is contained in:
2026-09-25 15:12:49 +02:00
parent d15bb4687c
commit 018e326918
6 changed files with 623 additions and 3 deletions
+10
View File
@@ -108,6 +108,8 @@ FocusScope {
return audioWidgetComponent;
case "apps":
return appsWidgetComponent;
case "timer":
return timerWidgetComponent;
case "capture":
return captureWidgetComponent;
case "media":
@@ -140,6 +142,14 @@ FocusScope {
AppMixer {}
}
Component {
id: timerWidgetComponent
TimerWidget {
service: root.daemon ? root.daemon.timerService : null
}
}
Component {
id: captureWidgetComponent