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