diff options
author | Erik Prabowo Kamal <erik@darapsa.co.id> | 2019-08-22 14:46:08 +0800 |
---|---|---|
committer | Erik Prabowo Kamal <erik@darapsa.co.id> | 2019-08-22 14:46:08 +0800 |
commit | fdca1a01d099c50d6e0f4982d633c0b2826bd6a1 (patch) | |
tree | 067a0b9e50b7a41f926557c38ce2d9ccf1fd7c2a /main.qml | |
parent | 6a07c4d1ebbd20fe5ce8c39d2b2fbfc092790158 (diff) |
Draft e-mail page
Diffstat (limited to 'main.qml')
-rw-r--r-- | main.qml | 17 |
1 files changed, 12 insertions, 5 deletions
@@ -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 {} } |