summaryrefslogtreecommitdiff
path: root/main.qml
diff options
context:
space:
mode:
Diffstat (limited to 'main.qml')
-rw-r--r--main.qml20
1 files changed, 12 insertions, 8 deletions
diff --git a/main.qml b/main.qml
index e0ee73f..8fbb800 100644
--- a/main.qml
+++ b/main.qml
@@ -2,13 +2,17 @@ import QtQuick 2.12
import QtQuick.Controls 2.12
ApplicationWindow {
- id: appWindow
- width: 360
- height: 640
- visible: true
+ id: appWindow
+ width: 362
+ height: 628
+ visible: true
+
+ StackView {
+ id: stackView
+ width: 362
+ height: 628
+
+ initialItem: Login {}
+ }
- StackView {
- id: stackView
- initialItem: Login {}
- }
}