-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPage1.txt
47 lines (40 loc) · 1.11 KB
/
Page1.txt
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
import QtQuick 2.7
import QtQuick.Controls 2.1
Rectangle {
color: "white"
Rectangle {
width: parent.width
height: 56 * scaleFactor
color: colors.black_38
clip: true
Label {
anchors.fill: parent
anchors.leftMargin: 16 * scaleFactor
horizontalAlignment: Label.AlignLeft
verticalAlignment: Label.AlignVCenter
text: qsTr("Map")
font.pixelSize: fonts.titleFont.pixelSize
font.family: fonts.titleFont.fontFamily.name
color: colors.white_100
}
}
Rectangle {
width: radius*2
height: width
radius: 32 * scaleFactor
anchors {
right: parent.right
bottom: parent.bottom
rightMargin: 20 * scaleFactor
bottomMargin: 50 * scaleFactor
}
color: "orange"
Image {
width: parent.radius
height: width
mipmap: true
source: sources.infoIcon
anchors.centerIn: parent
}
}
}