Files
Jellyfin-Freebox/Views/Logo.qml
T
2024-08-13 15:38:24 +02:00

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"
}
}