Files
harbour-calibreweb/qml/cover/CoverPage.qml
T

24 lines
600 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/harbour-calibreweb/icons/harbour-calibreweb.png"
sourceSize.width: 86
sourceSize.height: 86
}
Label {
anchors.horizontalCenter: parent.horizontalCenter
text: "Calibre Web"
color: Theme.primaryColor
font.pixelSize: Theme.fontSizeSmall
}
}
}