aboutsummaryrefslogtreecommitdiffstats
path: root/DemoApplication/HomeForm.qml
diff options
context:
space:
mode:
Diffstat (limited to 'DemoApplication/HomeForm.qml')
-rw-r--r--DemoApplication/HomeForm.qml14
1 files changed, 14 insertions, 0 deletions
diff --git a/DemoApplication/HomeForm.qml b/DemoApplication/HomeForm.qml
new file mode 100644
index 0000000..83412a6
--- /dev/null
+++ b/DemoApplication/HomeForm.qml
@@ -0,0 +1,14 @@
+import QtQuick 2.9
+import QtQuick.Controls 2.2
+
+Page {
+ width: 600
+ height: 400
+
+ title: qsTr("Home")
+
+ Label {
+ text: qsTr("You are on the home page.")
+ anchors.centerIn: parent
+ }
+}