CoverPage.qml 399 B

12345678910111213141516171819202122
  1. import QtQuick 2.0
  2. import Sailfish.Silica 1.0
  3. CoverBackground {
  4. Label {
  5. id: label
  6. anchors.centerIn: parent
  7. text: qsTr("My Cover")
  8. }
  9. CoverActionList {
  10. id: coverAction
  11. CoverAction {
  12. iconSource: "image://theme/icon-cover-next"
  13. }
  14. CoverAction {
  15. iconSource: "image://theme/icon-cover-pause"
  16. }
  17. }
  18. }