summaryrefslogtreecommitdiff
path: root/main.qml
diff options
context:
space:
mode:
authorErik Prabowo Kamal <erik@darapsa.co.id>2019-08-22 14:46:08 +0800
committerErik Prabowo Kamal <erik@darapsa.co.id>2019-08-22 14:46:08 +0800
commitfdca1a01d099c50d6e0f4982d633c0b2826bd6a1 (patch)
tree067a0b9e50b7a41f926557c38ce2d9ccf1fd7c2a /main.qml
parent6a07c4d1ebbd20fe5ce8c39d2b2fbfc092790158 (diff)
Draft e-mail page
Diffstat (limited to 'main.qml')
-rw-r--r--main.qml17
1 files changed, 12 insertions, 5 deletions
diff --git a/main.qml b/main.qml
index fcf3a4d..8fbb800 100644
--- a/main.qml
+++ b/main.qml
@@ -2,10 +2,17 @@ import QtQuick 2.12
import QtQuick.Controls 2.12
ApplicationWindow {
- id: appWindow
- width: 362
- height: 628
- visible: true
+ id: appWindow
+ width: 362
+ height: 628
+ visible: true
+
+ StackView {
+ id: stackView
+ width: 362
+ height: 628
+
+ initialItem: Login {}
+ }
- Login {}
}