summaryrefslogtreecommitdiff
path: root/application.qml
diff options
context:
space:
mode:
authorOrangerot <purple@orangerot.dev>2024-07-26 17:49:18 +0200
committerOrangerot <purple@orangerot.dev>2024-07-26 17:49:18 +0200
commita5ba031c9dfc830d3fe44e868c5fd26af2fbb225 (patch)
tree7142f49c4cbfaa607a42530e67918c120bc071c8 /application.qml
parentf039734dddd1262909219ed14d9bf07e4d35ff81 (diff)
feat(qt): simple qt qml application
Diffstat (limited to 'application.qml')
-rw-r--r--application.qml13
1 files changed, 13 insertions, 0 deletions
diff --git a/application.qml b/application.qml
new file mode 100644
index 0000000..38da5d6
--- /dev/null
+++ b/application.qml
@@ -0,0 +1,13 @@
+import QtQuick
+import QtQuick.Controls
+
+ApplicationWindow {
+ width: 400
+ height: 400
+ visible: true
+
+ Button {
+ id: button
+ text: "A Special Button"
+ }
+}