diff options
Diffstat (limited to 'Page2Form.ui.qml')
| -rw-r--r-- | Page2Form.ui.qml | 11 | 
1 files changed, 11 insertions, 0 deletions
diff --git a/Page2Form.ui.qml b/Page2Form.ui.qml new file mode 100644 index 0000000..9081c7c --- /dev/null +++ b/Page2Form.ui.qml @@ -0,0 +1,11 @@ +import QtQuick 2.12 +import QtQuick.Controls 2.5 + +Page { +    title: qsTr("Page 2") + +    Label { +        text: qsTr("You are on Page 2.") +        anchors.centerIn: parent +    } +}  |