From ed6b65dd2757224dad29deb82a15c71c66efd58c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=A6=8C=EA=A6=AB=EA=A6=B6=EA=A6=8F=EA=A7=80=EA=A6=A6?= =?UTF-8?q?=EA=A6=BF=EA=A6=A7=EA=A6=AE=EA=A6=91=EA=A6=A9=EA=A6=AD=EA=A7=80?= Date: Sat, 18 Feb 2023 18:06:46 +0800 Subject: Edit profile full name --- InstructorEditProfile.ui.qml | 44 +++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 41 insertions(+), 3 deletions(-) diff --git a/InstructorEditProfile.ui.qml b/InstructorEditProfile.ui.qml index fbad8fa..d695b77 100644 --- a/InstructorEditProfile.ui.qml +++ b/InstructorEditProfile.ui.qml @@ -152,15 +152,53 @@ Flickable { Layout.fillWidth: true Layout.bottomMargin: 8 text: qsTr("Full name") - color: - "#747579" + color: "#747579" font { family: doesntEmbed ? "Roboto" : regular.name pointSize: 15 } } - RowLayout { + Rectangle { + Layout.fillWidth: true + implicitHeight: firstName.height + radius: 5.2 + border { + width: 1 + color: "#dde0e3" + } + + TextField { + id: firstName + text: "Lori" + placeholderText: qsTr("First name") + width: parent.width / 2 + anchors.left: parent.left + background: Rectangle { + color: "transparent" + } + } + + Rectangle { + width: 1 + height: firstName.height + anchors.horizontalCenter: parent.horizontalCenter + border { + width: .5 + color: "#88dde0e3" + } + } + + TextField { + id: lastName + text: "Stevens" + placeholderText: qsTr("Last name") + width: parent.width / 2 + anchors.right: parent.right + background: Rectangle { + color: "transparent" + } + } } } -- cgit v1.2.3