summaryrefslogtreecommitdiff
path: root/pages/EmailForm.ui.qml
diff options
context:
space:
mode:
authorAnatasof Wirapraja <anatasof.wirapraja@gmail.com>2019-09-16 23:57:59 +0700
committerAnatasof Wirapraja <anatasof.wirapraja@gmail.com>2019-09-16 23:57:59 +0700
commitacf879ebafaa870fc5ef942effa660a08041557e (patch)
treed041481e384cfe827e96ce30699b17d43f16135f /pages/EmailForm.ui.qml
parent76d2b079e4f3f3b0a1a6d6505ced056cdc42f60a (diff)
changed instructionText and placeholderText
Diffstat (limited to 'pages/EmailForm.ui.qml')
-rw-r--r--pages/EmailForm.ui.qml47
1 files changed, 34 insertions, 13 deletions
diff --git a/pages/EmailForm.ui.qml b/pages/EmailForm.ui.qml
index 2c4ae43..26f124c 100644
--- a/pages/EmailForm.ui.qml
+++ b/pages/EmailForm.ui.qml
@@ -50,7 +50,7 @@ Rectangle {
lineHeight: 1
font.weight: Font.Bold
wrapMode: Text.WordWrap
- anchors.bottom: emailTextField.top
+ anchors.bottom: emailLayout.top
anchors.bottomMargin: 16
anchors.left: parent.left
anchors.leftMargin: 16
@@ -61,20 +61,41 @@ Rectangle {
font.pointSize: 34
}
- TextField {
- id: emailTextField
- y: 501
- font.pointSize: 16
- anchors.bottom: loginButton.top
- anchors.bottomMargin: 16
- font.family: "Google Sans"
- Layout.fillWidth: true
- placeholderText: qsTr("Enter your e-mail")
+ RowLayout {
+ id: emailLayout
anchors.right: parent.right
- anchors.rightMargin: 16
+ anchors.rightMargin: 0
anchors.left: parent.left
- anchors.leftMargin: 16
- Layout.maximumHeight: 56
+ anchors.leftMargin: 0
+ anchors.bottom: loginButton.top
+ anchors.bottomMargin: 16
+ width: parent.width
+ height: 56
+ spacing: 8
+
+ Image {
+ width: 24
+ height: 24
+ opacity: 0.54
+ sourceSize.height: 24
+ sourceSize.width: 24
+ Layout.leftMargin: 16
+ Layout.alignment: Qt.AlignVCenter
+ fillMode: Image.PreserveAspectFit
+ source: "../assets/email-24px.svg"
+ antialiasing: true
+ }
+
+ TextField {
+ id: emailTextField
+ Layout.rightMargin: 16
+ Layout.leftMargin: 24
+ Layout.alignment: Qt.AlignHCenter | Qt.AlignVCenter
+ font.pointSize: 16
+ font.family: "Google Sans"
+ Layout.fillWidth: true
+ placeholderText: qsTr("Email")
+ }
}
RoundButton {