blob: fb7011c8508c11121448ed5638d4d4df2a847d9f (
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
|
import QtQuick 1.1
import com.nokia.meego 1.1
import com.nokia.extras 1.1
Page {
id: watchPage
anchors.leftMargin: UiConstants.DefaultMargin
anchors.rightMargin: UiConstants.DefaultMargin
tools: ToolBarLayout {
ToolIcon {
platformIconId: "toolbar-back"
anchors.left: parent.left
onClicked: pageStack.pop()
}
}
ListView {
id: emptyListView
anchors.fill: parent
model: ListModel {
}
delegate: ListDelegate {
Image {
source: "image://theme/icon-m-common-drilldown-arrow" + (theme.inverted ? "-inverse" : "")
anchors.right: parent.right;
anchors.verticalCenter: parent.verticalCenter
}
}
}
ScrollDecorator {
flickableItem: watchesListView
}
}
|