diff options
author | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2023-02-18 18:31:48 +0800 |
---|---|---|
committer | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2023-02-18 18:31:48 +0800 |
commit | fabcde2914956b7b934b3ccdddb5f8412fa62f22 (patch) | |
tree | faed96d34bc5768270bb1a1afedde00898cf5c62 | |
parent | 655c2ba253efb2101cfbee0bcff053ca539a19a9 (diff) |
Edit profile location
-rw-r--r-- | InstructorEditProfile.ui.qml | 29 |
1 files changed, 28 insertions, 1 deletions
diff --git a/InstructorEditProfile.ui.qml b/InstructorEditProfile.ui.qml index 23e99ec..5e47cb2 100644 --- a/InstructorEditProfile.ui.qml +++ b/InstructorEditProfile.ui.qml @@ -401,7 +401,34 @@ Flickable { } } - RowLayout { + Rectangle { + Layout.fillWidth: true + implicitHeight: location.height + radius: 5.2 + border { + width: 1 + color: "#dde0e3" + } + + TextField { + id: location + text: "California" + 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 + } + } } } } |