From 3fd845a90e86c089a310feca52b6516bac9e538d Mon Sep 17 00:00:00 2001 From: Anatasof Wirapraja Date: Tue, 27 Aug 2019 16:40:50 +0700 Subject: remove laterButton --- pages/EmailForm.ui.qml | 37 ++----------------------------------- 1 file changed, 2 insertions(+), 35 deletions(-) (limited to 'pages/EmailForm.ui.qml') diff --git a/pages/EmailForm.ui.qml b/pages/EmailForm.ui.qml index 4aa692c..5c0581d 100644 --- a/pages/EmailForm.ui.qml +++ b/pages/EmailForm.ui.qml @@ -12,8 +12,6 @@ Rectangle { property alias emailTextField: emailTextField property alias passwordTextField: passwordTextField property alias loginButton: loginButton - property alias laterButton: laterButton - Label { x: 16 y: 398 @@ -72,7 +70,7 @@ Rectangle { text: qsTr("Masuk") anchors.right: parent.right anchors.rightMargin: 16 - anchors.bottom: laterButton.top + anchors.bottom: parent.bottom anchors.bottomMargin: 16 anchors.left: parent.left anchors.leftMargin: 16 @@ -89,38 +87,7 @@ Rectangle { background: Rectangle { opacity: enabled ? 1.0 : 0.3 - color: laterButton.down ? "#6d22e9" : "#4F12DA" - radius: 6 - } - } - - Button { - id: laterButton - x: 16 - y: 566 - height: 36 - text: qsTr("Nanti saja") - anchors.right: parent.right - anchors.rightMargin: 16 - anchors.bottom: parent.bottom - anchors.bottomMargin: 16 - anchors.left: parent.left - anchors.leftMargin: 16 - - contentItem: Text { - text: laterButton.text - color: "#6d22e9" - font.pointSize: 14 - font.family: "Google Sans" - horizontalAlignment: Text.AlignHCenter - verticalAlignment: Text.AlignVCenter - elide: Text.ElideRight - } - background: Rectangle { - opacity: enabled ? 0.3 : 1.0 - color: laterButton.down ? "#6d22e9" : "#fff" - border.color: "#6d22e9" - border.width: 1 + color: loginButton.down ? "#6d22e9" : "#4F12DA" radius: 6 } } -- cgit v1.2.3 From 0a16f8f6822325262ceac51f1847c1ba4bcae773 Mon Sep 17 00:00:00 2001 From: Anatasof Wirapraja Date: Tue, 27 Aug 2019 17:12:21 +0700 Subject: remove passwordTextField & rework on emailTextField --- pages/EmailForm.ui.qml | 55 +++++++++++++++++++++++++------------------------- 1 file changed, 27 insertions(+), 28 deletions(-) (limited to 'pages/EmailForm.ui.qml') diff --git a/pages/EmailForm.ui.qml b/pages/EmailForm.ui.qml index 5c0581d..1525606 100644 --- a/pages/EmailForm.ui.qml +++ b/pages/EmailForm.ui.qml @@ -10,7 +10,6 @@ Rectangle { border.width: 0 property alias emailTextField: emailTextField - property alias passwordTextField: passwordTextField property alias loginButton: loginButton Label { x: 16 @@ -19,7 +18,7 @@ Rectangle { text: qsTr("Continue with E-Mail") font.weight: Font.Bold wrapMode: Text.WordWrap - anchors.bottom: buttonLayout.top + anchors.bottom: emailTextField.top anchors.bottomMargin: 16 anchors.left: parent.left anchors.leftMargin: 16 @@ -30,35 +29,27 @@ Rectangle { font.pointSize: 34 } - RowLayout { - x: 34 - y: 411 - id: buttonLayout - width: loginButton.width - height: loginButton.height - anchors.bottom: passwordTextField.top - anchors.bottomMargin: 16 - anchors.horizontalCenter: parent.horizontalCenter - - TextField { - id: emailTextField - width: 303 - Layout.fillWidth: true - placeholderText: "E-mail" - } - } - TextField { - id: passwordTextField - x: 34 - y: 468 - width: loginButton.width - height: loginButton.height + id: emailTextField + y: 501 + font.pointSize: 16 anchors.bottom: loginButton.top anchors.bottomMargin: 16 - anchors.horizontalCenter: parent.horizontalCenter - echoMode: TextInput.Password - placeholderText: qsTr("Password") + font.family: "Google Sans" + Layout.fillWidth: true + placeholderText: qsTr("E-mail") + anchors.right: parent.right + anchors.rightMargin: 16 + anchors.left: parent.left + anchors.leftMargin: 16 + Layout.maximumHeight: 56 + + background: Rectangle { + color: emailTextField.enabled ? "#f4f4f4" : "#353637" + anchors.verticalCenter: parent.verticalCenter + implicitHeight: 56 + radius: 6 + } } Button { @@ -92,3 +83,11 @@ Rectangle { } } } + + + + +/*##^## Designer { + D{i:2;anchors_x:16} +} + ##^##*/ -- cgit v1.2.3