summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--InstructorEditProfile.ui.qml29
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
+ }
+ }
}
}
}