diff options
Diffstat (limited to 'features/LoginForm.ui.qml')
-rw-r--r-- | features/LoginForm.ui.qml | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/features/LoginForm.ui.qml b/features/LoginForm.ui.qml new file mode 100644 index 0000000..29f4902 --- /dev/null +++ b/features/LoginForm.ui.qml @@ -0,0 +1,27 @@ +import QtQuick 2.12 +import QtQuick.Layouts 1.12 +import QtQuick.Controls 2.12 +import QtQuick.Controls.Material 2.12 + +Page { + id: page + title: qsTr("Login") + + Text { + id: pageTitle + text: stackView.currentItem.title + anchors.bottom: parent.bottom + anchors.bottomMargin: 16 + anchors.left: parent.left + anchors.leftMargin: 16 + font.pixelSize: 20 + font.family: "Work Sans" + font.weight: Font.Medium + } +} +/*##^## +Designer { + D{i:0;autoSize:true;height:480;width:640} +} +##^##*/ + |