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

33 lines
640 B
QML

import QtQuick 2.5
import fbx.application 1.0
import "Views" as View
Application {
// Liste des labels et types
property var fields: [
{label: "Server", type: "text"},
{label: "User", type: "text"},
{label: "Password", type: "password"}
]
Row {
anchors.fill: parent
spacing: 10
Rectangle {
width: parent.width / 3 - 5
height: parent.height
View.Logo {}
}
Rectangle {
width: parent.width / 3 * 2 - 5
height: parent.height
color: "#000B25"
View.Login {}
}
}
}