mirror of
https://gitlab.com/kelteseth/ScreenPlay.git
synced 2024-11-06 19:12:30 +01:00
e327f73812
They default to format but also can be used for checking
28 lines
656 B
QML
28 lines
656 B
QML
// SPDX-License-Identifier: BSD-3-Clause
|
|
import QtQuick
|
|
import QtQuick.Layouts
|
|
import QtQuick.Controls
|
|
import QtQuick.Controls.Material
|
|
|
|
Rectangle {
|
|
id: root
|
|
color: "#333333"
|
|
anchors.fill: parent
|
|
property int counter: 0
|
|
ColumnLayout {
|
|
anchors.centerIn: parent
|
|
Text {
|
|
Layout.fillWidth: true
|
|
color: "white"
|
|
font.pointSize: 14
|
|
text: "🎉 Qml Button clicked: " + root.counter
|
|
horizontalAlignment: Text.AlignHCenter
|
|
}
|
|
Button {
|
|
text: "Click me!"
|
|
Layout.fillWidth: true
|
|
onClicked: root.counter++
|
|
}
|
|
}
|
|
}
|