15 lines
208 B
QML
15 lines
208 B
QML
import QtQuick 2.5
|
|
|
|
// Display the logo
|
|
Rectangle {
|
|
width: parent.width
|
|
height: parent.height
|
|
|
|
color: "#000B25"
|
|
|
|
Image {
|
|
anchors.centerIn: parent
|
|
source: "../icon.png"
|
|
}
|
|
}
|