| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- import QtQuick 2.0
- import Sailfish.Silica 1.0
- CoverBackground {
- Image {
- id: coverimg
- source: Qt.resolvedUrl("onvista-launcher-86.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.fontSizeMedium
- color: Theme.primaryColor
- text: qsTr("OnVista (unofficial)")
- }
- // CoverActionList {
- // id: coverAction
- // CoverAction {
- // iconSource: "image://theme/icon-cover-next"
- // }
- // CoverAction {
- // iconSource: "image://theme/icon-cover-pause"
- // }
- // }
- }
|