summaryrefslogtreecommitdiff
path: root/features/LoginEmailForm.ui.qml
diff options
context:
space:
mode:
authorAnatasof Wirapraja <anatasof.wirapraja@gmail.com>2019-09-19 17:16:39 +0700
committerAnatasof Wirapraja <anatasof.wirapraja@gmail.com>2019-09-19 17:16:39 +0700
commitb2b733f272c1970e0a92c925c96b7c616fa6e354 (patch)
treeab89d8618de0df5cad5ebeec7f4802c6aae099dc /features/LoginEmailForm.ui.qml
parent7625e24271ebb98848f92eb69d5706221a2efac3 (diff)
`continueButton` enabled on `emilTextField` text change
Diffstat (limited to 'features/LoginEmailForm.ui.qml')
-rw-r--r--features/LoginEmailForm.ui.qml4
1 files changed, 3 insertions, 1 deletions
diff --git a/features/LoginEmailForm.ui.qml b/features/LoginEmailForm.ui.qml
index 501b575..b3cf24c 100644
--- a/features/LoginEmailForm.ui.qml
+++ b/features/LoginEmailForm.ui.qml
@@ -8,6 +8,7 @@ Page {
title: qsTr("Log in")
property alias continueButton: continueButton
+ property alias emailTextField: emailTextField
Text {
id: pageTitle
@@ -66,7 +67,7 @@ Page {
}
TextField {
- id: emailForm
+ id: emailTextField
topPadding: 16
Layout.alignment: Qt.AlignHCenter | Qt.AlignVCenter
Layout.rightMargin: 16
@@ -125,6 +126,7 @@ Page {
icon.name: "arrow-forward-icon"
icon.source: "../components/icons/arrow-forward-24px.svg"
highlighted: true
+ enabled: false
}
}
}