From 3d8513017b1c0c91ee764788eb1efd9b9c4a1109 Mon Sep 17 00:00:00 2001 From: Anatasof Wirapraja Date: Sun, 15 Sep 2019 20:34:16 +0700 Subject: fixed error `QQmlComponent: Component is not ready` --- pages/PasswordForm.ui.qml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'pages/PasswordForm.ui.qml') diff --git a/pages/PasswordForm.ui.qml b/pages/PasswordForm.ui.qml index 8936ccd..f5d01a6 100644 --- a/pages/PasswordForm.ui.qml +++ b/pages/PasswordForm.ui.qml @@ -66,12 +66,12 @@ Rectangle { RowLayout { id: userEmail height: 56 + anchors.bottom: passTextFieldLayout.top + anchors.bottomMargin: 16 anchors.horizontalCenterOffset: 0 anchors.horizontalCenter: parent.horizontalCenter width: parent.width spacing: 8 - anchors.bottom: passTextField.top - anchors.bottomMargin: 16 Image { width: 24 @@ -95,7 +95,7 @@ Rectangle { } } RowLayout { - id: passTextField + id: passTextFieldLayout anchors.horizontalCenter: parent.horizontalCenter anchors.bottom: createPassButton.top anchors.bottomMargin: 16 @@ -114,6 +114,7 @@ Rectangle { } TextField { + id: passTextField Layout.rightMargin: 16 Layout.leftMargin: 24 Layout.alignment: Qt.AlignHCenter | Qt.AlignVCenter -- cgit v1.2.3