diff options
author | Anatasof Wirapraja <anatasof.wirapraja@gmail.com> | 2019-08-31 09:46:10 +0700 |
---|---|---|
committer | Anatasof Wirapraja <anatasof.wirapraja@gmail.com> | 2019-08-31 09:46:10 +0700 |
commit | 4fb624054cfe1813b4e56423c27056cd80c7c120 (patch) | |
tree | 57d0282b3fc817d92cf713a0c390687cfddf0d62 /pages/ExistingLogin.qml | |
parent | 80af8d82a2d8ed7c2c3551a3a7e4e4b797cc36ed (diff) |
add ExistingLoginForm
Diffstat (limited to 'pages/ExistingLogin.qml')
-rw-r--r-- | pages/ExistingLogin.qml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/pages/ExistingLogin.qml b/pages/ExistingLogin.qml new file mode 100644 index 0000000..6833c6a --- /dev/null +++ b/pages/ExistingLogin.qml @@ -0,0 +1,12 @@ +import QtQuick 2.12 +import id.co.darapsa.kelakon.user 0.1 + +ExistingLoginForm { + width: stackView.width + height: stackView.height + backButton { + onClicked: { + stackView.pop() + } + } +} |