blob: e1245c3efaabc23e1d70be1d3af5ad3652598bc2 (
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
|
import QtQuick 2.12
import QtQuick.Layouts 1.3
import QtQuick.Controls 2.12
import QtQuick.Controls.Material 2.12
Rectangle {
id: rectangle
color: "#fff"
property alias backButton: backButton
ToolBar {
height: 48
anchors.top: parent.top
anchors.topMargin: 0
anchors.right: parent.right
anchors.rightMargin: 0
anchors.left: parent.left
anchors.leftMargin: 0
background: rectangle
Rectangle {
color: "#fff"
}
RowLayout {
anchors.fill: parent
ToolButton {
id: backButton
icon.name: "back-icon"
icon.source: "/assets/arrow-back-24px.svg"
icon.color: "transparent"
}
Label {
id: title
text: qsTr("Create Profile")
font.family: "Google Sans"
font.pointSize: 20
elide: Label.ElideRight
horizontalAlignment: Qt.AlignHCenter
verticalAlignment: Qt.AlignVCenter
Layout.fillWidth: true
}
}
}
}
/*##^## Designer {
D{i:0;autoSize:true;height:480;width:640}D{i:1;anchors_width:640}
}
##^##*/
|