26 lines
532 B
QML
26 lines
532 B
QML
import QtQuick 2.0
|
|
import Sailfish.Silica 1.0
|
|
|
|
Page {
|
|
id: scheduleResultsPage
|
|
|
|
SilicaListView {
|
|
id: scheduleInput
|
|
model: 5
|
|
anchors.fill: parent
|
|
|
|
header: PageHeader {
|
|
title: "Schedule Results"
|
|
}
|
|
|
|
delegate: BackgroundItem {
|
|
id: delegate
|
|
|
|
Label {
|
|
x: Theme.paddingLarge
|
|
text: "Item " + index
|
|
color: delegate.highlighted ? Theme.highlightColor : Theme.primaryColor
|
|
}
|
|
}
|
|
}
|
|
}
|