diff options
author | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2023-02-18 18:30:07 +0800 |
---|---|---|
committer | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2023-02-18 18:30:07 +0800 |
commit | 655c2ba253efb2101cfbee0bcff053ca539a19a9 (patch) | |
tree | a64393adf4f0d02be573836e1a4daefe19354b60 /InstructorEditProfile.ui.qml | |
parent | bdf9b9d062dfe2a160992f22c4e6d21425bf84aa (diff) |
Edit profile phone number
Diffstat (limited to 'InstructorEditProfile.ui.qml')
-rw-r--r-- | InstructorEditProfile.ui.qml | 32 |
1 files changed, 29 insertions, 3 deletions
diff --git a/InstructorEditProfile.ui.qml b/InstructorEditProfile.ui.qml index c5ba4e4..23e99ec 100644 --- a/InstructorEditProfile.ui.qml +++ b/InstructorEditProfile.ui.qml @@ -345,15 +345,41 @@ Flickable { Layout.fillWidth: true Layout.bottomMargin: 8 text: qsTr("Phone number") - color: - "#747579" + color: "#747579" font { family: doesntEmbed ? "Roboto" : regular.name pointSize: 15 } } - RowLayout { + Rectangle { + Layout.fillWidth: true + implicitHeight: phoneNumber.height + radius: 5.2 + border { + width: 1 + color: "#dde0e3" + } + + TextField { + id: phoneNumber + text: "1234567890" + topPadding: 8 + leftPadding: 16 + rightPadding: 16 + bottomPadding: 8 + anchors { + left: parent.left + right: parent.right + } + background: Rectangle { + color: "transparent" + } + font { + family: doesntEmbed ? "Roboto" : regular.name + pointSize: 15 + } + } } } |