summaryrefslogtreecommitdiff
path: root/application.qml
diff options
context:
space:
mode:
authorSteru <jerrydream111@gmail.com>2024-07-26 18:06:13 +0200
committerSteru <jerrydream111@gmail.com>2024-07-26 18:06:13 +0200
commitb5566cbcf7541819490e6e97610485c4194c716f (patch)
treee0554b108856bb39375288ad07e2f0ffadce12ef /application.qml
parent39f6ee17569327ecc8e8ea2d254a452445e694f7 (diff)
parenta5ba031c9dfc830d3fe44e868c5fd26af2fbb225 (diff)
Merge remote-tracking branch 'origin/main'
# Conflicts: # CMakeLists.txt
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"
+ }
+}