diff options
Diffstat (limited to 'sowatchui/qml/WatchPage.qml')
-rw-r--r-- | sowatchui/qml/WatchPage.qml | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/sowatchui/qml/WatchPage.qml b/sowatchui/qml/WatchPage.qml new file mode 100644 index 0000000..fb7011c --- /dev/null +++ b/sowatchui/qml/WatchPage.qml @@ -0,0 +1,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 + } +} |