Add QtQuick app sample code
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 4s

This commit is contained in:
2026-04-29 21:18:49 -07:00
parent e4136d0153
commit 1beefa7d11
3 changed files with 40 additions and 7 deletions
+21
View File
@@ -0,0 +1,21 @@
import QtQuick
import QtQuick.Controls
ApplicationWindow {
width: 400
height: 400
visible: true
Button {
id: button
text: "A Special Button"
background: Rectangle {
implicitWidth: 100
implicitHeight: 40
color: button.down ? "#d6d6d6" : "#f6f6f6"
border.color: "#26282a"
border.width: 1
radius: 4
}
}
}