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