diff options
author | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2023-02-18 18:06:46 +0800 |
---|---|---|
committer | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2023-02-18 18:06:46 +0800 |
commit | ed6b65dd2757224dad29deb82a15c71c66efd58c (patch) | |
tree | abf09ff46bf468db167de84a4f1079f4b805beb2 | |
parent | e71afce27b7298e42775b364f821ed88f2904813 (diff) |
Edit profile full name
-rw-r--r-- | InstructorEditProfile.ui.qml | 44 |
1 files 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" + } + } } } |