summaryrefslogtreecommitdiff
path: root/InstructorEditProfile.ui.qml
blob: 398b99033a6e329f2947198d1329b6ddf63ed250 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
import QtQuick 2.15
import QtQuick.Controls 2.15
import QtQuick.Layouts 1.15

Flickable {
	property bool doesntEmbed: Qt.platform.os === "android"
				|| Qt.platform.os === "linux"
				|| Qt.platform.os === "osx"
				|| Qt.platform.os === "unix"
				|| Qt.platform.os === "windows"
	contentHeight: main.height

	FontLoader {
		id: bold
		source: "Roboto/Roboto-Bold.ttf"
	}

	ColumnLayout {
		id: main

		RowLayout {

			ColumnLayout {
				Layout.leftMargin: 15
				Layout.rightMargin: 15

				Rectangle {
					Layout.fillWidth: true
					implicitHeight: editProfile.height
					radius: 8
					border {
						width: 1
						color: "#1a000000"
					}

					ColumnLayout {
						id: editProfile
						anchors {
							left: parent.left
							right: parent.right
						}

						Rectangle {
							Layout.fillWidth: true
							implicitHeight: cardHeader.height
							border {
								width: 1
								color: "#1a000000"
							}

							Label {
								id: cardHeader
								text: qsTr("Edit Profile")
								padding: 16
								anchors {
									left: parent.left
									right: parent.right
								}
								font {
									family: doesntEmbed ? "Roboto" : bold.name
									weight: Font.Bold
									pointSize: 23
								}
							}
						}

						ColumnLayout {
							Layout.topMargin: 41.6
							Layout.leftMargin: 32.8
							Layout.rightMargin: 32.8
							Layout.bottomMargin: 16
						}
					}
				}
			}
		}
	}
}