diff options
-rw-r--r-- | Login.qml | 3 | ||||
-rw-r--r-- | main.qml | 22 |
2 files changed, 16 insertions, 9 deletions
@@ -1,6 +1,9 @@ import QtQuick 2.12 LoginForm { + width: appWindow.width + height: appWindow.height + emailButton { onClicked: { stackView.push("qrc:/pages/Email.qml") @@ -2,13 +2,17 @@ import QtQuick 2.12 import QtQuick.Controls 2.12 ApplicationWindow { - id: appWindow - width: 360 - height: 640 - visible: true - - StackView { - id: stackView - initialItem: Login {} - } + id: appWindow + width: 362 + height: 628 + visible: true + + StackView { + id: stackView + width: 362 + height: 628 + + initialItem: Login {} + } + } |