Files
Jellyfin-Freebox/Views/Logo.qml
T

15 lines
208 B
QML
Raw Normal View History

2024-08-13 15:38:24 +02:00
import QtQuick 2.5
// Display the logo
Rectangle {
width: parent.width
height: parent.height
color: "#000B25"
Image {
anchors.centerIn: parent
source: "../icon.png"
}
}