24 lines
606 B
QML
24 lines
606 B
QML
import QtQuick 2.0
|
|
import Sailfish.Silica 1.0
|
|
|
|
CoverBackground {
|
|
Column {
|
|
anchors.centerIn: parent
|
|
spacing: Theme.paddingMedium
|
|
|
|
Image {
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
source: "/usr/share/icons/hicolor/86x86/apps/harbour-calibreweb.png"
|
|
sourceSize.width: 86
|
|
sourceSize.height: 86
|
|
}
|
|
|
|
Label {
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
text: qsTr("Calibre Web")
|
|
color: Theme.primaryColor
|
|
font.pixelSize: Theme.fontSizeSmall
|
|
}
|
|
}
|
|
}
|