Files
accordion/client/ui/Main.qml
2026-07-25 16:58:01 -05:00

34 lines
540 B
QML

import QtQuick
import QtQuick.Controls
import accordion
ApplicationWindow {
visible: true
width: 1200
height: 800
title: "accordion"
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()
}
}
}