aboutsummaryrefslogtreecommitdiff
path: root/source/qml/main.qml
diff options
context:
space:
mode:
authorrtk0c <[email protected]>2022-06-28 15:39:26 -0700
committerrtk0c <[email protected]>2022-06-28 15:39:26 -0700
commitd77b11b20dcd9e6c5adbc541f29bf5cdde9db1d0 (patch)
tree94a7735912875b79445e89e5ab1ba112f8338ee3 /source/qml/main.qml
parent8f0dda5eab181b0f14f2652b4e984aaaae3f258c (diff)
Initial QtQuick project
Diffstat (limited to 'source/qml/main.qml')
-rw-r--r--source/qml/main.qml8
1 files changed, 8 insertions, 0 deletions
diff --git a/source/qml/main.qml b/source/qml/main.qml
new file mode 100644
index 0000000..41424f8
--- /dev/null
+++ b/source/qml/main.qml
@@ -0,0 +1,8 @@
+import QtQuick
+
+Window {
+ width: 640
+ height: 480
+ visible: true
+ title: qsTr("Hello World")
+}