diff options
Diffstat (limited to 'InstructorEditProfile.ui.qml')
-rw-r--r-- | InstructorEditProfile.ui.qml | 110 |
1 files changed, 110 insertions, 0 deletions
diff --git a/InstructorEditProfile.ui.qml b/InstructorEditProfile.ui.qml index b2f0633..22464c2 100644 --- a/InstructorEditProfile.ui.qml +++ b/InstructorEditProfile.ui.qml @@ -141,6 +141,116 @@ Flickable { } } } + + ColumnLayout { + Layout.topMargin: 16 + Layout.leftMargin: 20 + Layout.rightMargin: 20 + Layout.bottomMargin: 16 + + Label { + Layout.fillWidth: true + Layout.bottomMargin: 9 + text: qsTr("Full name") + color: + "#747579" + font { + family: doesntEmbed ? "Roboto" : regular.name + pointSize: 15 + } + } + + RowLayout { + } + } + + ColumnLayout { + Layout.topMargin: 16 + Layout.leftMargin: 20 + Layout.rightMargin: 20 + Layout.bottomMargin: 16 + + Label { + Layout.fillWidth: true + Layout.bottomMargin: 9 + text: qsTr("Username") + color: + "#747579" + font { + family: doesntEmbed ? "Roboto" : regular.name + pointSize: 15 + } + } + + RowLayout { + } + } + + ColumnLayout { + Layout.topMargin: 16 + Layout.leftMargin: 20 + Layout.rightMargin: 20 + Layout.bottomMargin: 16 + + Label { + Layout.fillWidth: true + Layout.bottomMargin: 9 + text: qsTr("Email id") + color: + "#747579" + font { + family: doesntEmbed ? "Roboto" : regular.name + pointSize: 15 + } + } + + RowLayout { + } + } + + ColumnLayout { + Layout.topMargin: 16 + Layout.leftMargin: 20 + Layout.rightMargin: 20 + Layout.bottomMargin: 16 + + Label { + Layout.fillWidth: true + Layout.bottomMargin: 9 + text: qsTr("Phone number") + color: + "#747579" + font { + family: doesntEmbed ? "Roboto" : regular.name + pointSize: 15 + } + } + + RowLayout { + } + } + + ColumnLayout { + Layout.topMargin: 16 + Layout.leftMargin: 20 + Layout.rightMargin: 20 + Layout.bottomMargin: 16 + + Label { + Layout.fillWidth: true + Layout.bottomMargin: 9 + text: qsTr("Location") + color: + "#747579" + font { + family: doesntEmbed ? "Roboto" : regular.name + pointSize: 15 + } + } + + RowLayout { + } + } } } } |