diff options
author | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2023-02-18 18:21:40 +0800 |
---|---|---|
committer | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2023-02-18 18:21:40 +0800 |
commit | 95467e4c7b848276def988d3784a37fabd5c0991 (patch) | |
tree | 3aa7196bb9d7a42d309d4c255954cab8a0864717 | |
parent | ed6b65dd2757224dad29deb82a15c71c66efd58c (diff) |
Edit profile username
-rw-r--r-- | InstructorEditProfile.ui.qml | 57 |
1 files changed, 56 insertions, 1 deletions
diff --git a/InstructorEditProfile.ui.qml b/InstructorEditProfile.ui.qml index d695b77..865d04d 100644 --- a/InstructorEditProfile.ui.qml +++ b/InstructorEditProfile.ui.qml @@ -220,7 +220,62 @@ Flickable { } } - RowLayout { + Rectangle { + Layout.fillWidth: true + implicitHeight: userName.height + radius: 5.2 + border { + width: 1 + color: "#dde0e3" + } + + Label { + id: domainName + text: "Eduport.com" + height: userName.height + width: parent.width / 2 + anchors.left: parent.left + verticalAlignment: Text.AlignVCenter + topPadding: 6 + leftPadding: 12 + rightPadding: 12 + bottomPadding: 6 + background: Rectangle { + color: "#e9ecef" + } + font { + family: doesntEmbed ? "Roboto" : regular.name + pointSize: 15 + } + } + + Rectangle { + width: 1 + height: userName.height + anchors.horizontalCenter: parent.horizontalCenter + border { + width: .5 + color: "#88dde0e3" + } + } + + TextField { + id: userName + text: "loristev" + width: parent.width / 2 + anchors.right: parent.right + topPadding: 8 + leftPadding: 16 + rightPadding: 16 + bottomPadding: 8 + background: Rectangle { + color: "transparent" + } + font { + family: doesntEmbed ? "Roboto" : regular.name + pointSize: 15 + } + } } } |