Removed unused page.
This commit is contained in:
parent
e06678c6a8
commit
5db515d9f9
@ -1,30 +0,0 @@
|
|||||||
import QtQuick 2.0
|
|
||||||
import Sailfish.Silica 1.0
|
|
||||||
|
|
||||||
Page {
|
|
||||||
id: page
|
|
||||||
|
|
||||||
// The effective value will be restricted by ApplicationWindow.allowedOrientations
|
|
||||||
allowedOrientations: Orientation.All
|
|
||||||
|
|
||||||
SilicaListView {
|
|
||||||
id: listView
|
|
||||||
model: 20
|
|
||||||
anchors.fill: parent
|
|
||||||
header: PageHeader {
|
|
||||||
title: qsTr("Nested Page")
|
|
||||||
}
|
|
||||||
delegate: BackgroundItem {
|
|
||||||
id: delegate
|
|
||||||
|
|
||||||
Label {
|
|
||||||
x: Theme.horizontalPageMargin
|
|
||||||
text: qsTr("Item") + " " + index
|
|
||||||
anchors.verticalCenter: parent.verticalCenter
|
|
||||||
color: delegate.highlighted ? Theme.highlightColor : Theme.primaryColor
|
|
||||||
}
|
|
||||||
onClicked: console.log("Clicked " + index)
|
|
||||||
}
|
|
||||||
VerticalScrollDecorator {}
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
x
Reference in New Issue
Block a user