Initial project
[harbour-pedalo.git] / qml / cover / CoverPage.qml
1 import QtQuick 2.0
2 import Sailfish.Silica 1.0
3
4 CoverBackground {
5     Label {
6         id: label
7         anchors.centerIn: parent
8         text: qsTr("My Cover")
9     }
10
11     CoverActionList {
12         id: coverAction
13
14         CoverAction {
15             iconSource: "image://theme/icon-cover-next"
16         }
17
18         CoverAction {
19             iconSource: "image://theme/icon-cover-pause"
20         }
21     }
22 }