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
|
import QtQuick 2.3
import Ubuntu.Components 1.2
import Ubuntu.Components.ListItems 1.0 as ListItem
Rectangle {
property alias text: sectionLabel.text
property alias showDivider: divider.visible
anchors {
left: parent.left
right: parent.right
}
height: sectionLabel.height
color: Theme.palette.normal.background
Label {
id: sectionLabel
anchors {
left: parent.left
leftMargin: units.gu(2)
right: parent.right
rightMargin: units.gu(2)
}
height: units.gu(4)
fontSize: "medium"
font.weight: Font.DemiBold
verticalAlignment: Text.AlignVCenter
}
ListItem.ThinDivider {
id: divider
anchors {
left: parent.left
right: parent.right
bottom: parent.bottom
}
}
}
|