project scaffolding

This commit is contained in:
2026-06-06 00:45:21 -05:00
parent 6fba54f9c0
commit 989fe385de
14 changed files with 26 additions and 2 deletions

33
ui/Main.qml Normal file
View File

@@ -0,0 +1,33 @@
import QtQuick
import QtQuick.Controls
import AppDemo
ApplicationWindow {
visible: true
width: 600
height: 400
title: "sonobulus"
TimerComponent {
id: timerComponent
}
Column {
anchors.centerIn: parent
spacing: 20
Label {
text: timerComponent.seconds + " s"
font.pixelSize: 32
horizontalAlignment: Text.AlignHCenter
}
Button {
text: "Reset"
onClicked: timerComponent.reset()
}
}
}