import QtQuick 2.0 import Sailfish.Silica 1.0 CoverBackground { Image { id: coverimg source: Qt.resolvedUrl("harbour-golem.png") anchors.horizontalCenter: parent.horizontalCenter //aspect ration einhalten fillMode: Image.PreserveAspectFit anchors.top: parent.top anchors.topMargin: Theme.paddingLarge smooth: true } Label { id: coverlbl anchors.horizontalCenter: parent.horizontalCenter anchors.top: coverimg.bottom anchors.topMargin: Theme.paddingLarge font.pixelSize: Theme.fontSizeSmall color: Theme.primaryColor text: qsTr("golem.de\n(unofficial)") } // CoverActionList { // id: coverAction // CoverAction { // iconSource: "image://theme/icon-cover-next" // } // CoverAction { // iconSource: "image://theme/icon-cover-pause" // } // } }