aboutsummaryrefslogtreecommitdiff
path: root/main.qml
diff options
context:
space:
mode:
authorDaniel Teichmann <daniel.teichmann@das-netzwerkteam.de>2020-07-17 16:33:41 +0200
committerDaniel Teichmann <daniel.teichmann@das-netzwerkteam.de>2020-07-17 16:35:10 +0200
commit2997cb8cfb0d17758a38aff036d6ff506758a3de (patch)
treec2cbf10defbe6299b4bf8185de8d700882d71373 /main.qml
parent39422cee2bc92a94d03f7b80f6c018d3c808181b (diff)
downloadRWA.Support.DesktopApp-2997cb8cfb0d17758a38aff036d6ff506758a3de.tar.gz
RWA.Support.DesktopApp-2997cb8cfb0d17758a38aff036d6ff506758a3de.tar.bz2
RWA.Support.DesktopApp-2997cb8cfb0d17758a38aff036d6ff506758a3de.zip
Initial commit (Empty Qt Quick application)
Diffstat (limited to 'main.qml')
-rw-r--r--main.qml10
1 files changed, 10 insertions, 0 deletions
diff --git a/main.qml b/main.qml
new file mode 100644
index 0000000..7d21507
--- /dev/null
+++ b/main.qml
@@ -0,0 +1,10 @@
+import QtQuick 2.9
+import QtQuick.Window 2.2
+import QtQuick.Extras 1.4
+
+Window {
+ visible: true
+ width: 640
+ height: 480
+ title: qsTr("Hello World")
+}