2019-12-01 17:40:10 +03:00
|
|
|
import QtQuick 2.0
|
|
|
|
import Sailfish.Silica 1.0
|
|
|
|
|
|
|
|
CoverBackground {
|
2019-12-12 23:59:58 +03:00
|
|
|
Icon {
|
|
|
|
anchors.centerIn: parent
|
|
|
|
height: parent.width * 0.9
|
|
|
|
width: parent.width * 0.9
|
2019-12-13 00:09:08 +03:00
|
|
|
opacity: 0.33
|
|
|
|
source: "../pages/icon-seaprint-nobg-bw.svg"
|
2019-12-12 23:59:58 +03:00
|
|
|
}
|
|
|
|
|
2019-12-01 17:40:10 +03:00
|
|
|
Label {
|
|
|
|
id: label
|
|
|
|
anchors.centerIn: parent
|
2019-12-12 22:53:46 +03:00
|
|
|
text: qsTr("Seaprint")
|
2019-12-01 17:40:10 +03:00
|
|
|
}
|
|
|
|
}
|