Files
Jellyfin-Freebox/Jellyfin.qml
T

48 lines
1.1 KiB
QML
Raw Normal View History

2024-08-12 15:14:19 +02:00
import QtQuick 2.5
import fbx.application 1.0
2024-08-13 11:26:45 +02:00
import "Views" as View
2024-08-12 15:14:19 +02:00
Application {
2024-08-13 11:26:45 +02:00
Column {
anchors.fill: parent
spacing: 10
Rectangle {
// Logo left section
width: parent.width / 2 - 5
height: parent.height
color: "#000B25"
Image {
anchors.centerIn: parent
source: "icon.png"
}
}
Rectangle {
// Grid View section to log user and setup the server link
width: parent.width / 2 - 5
height: parent.height
color: "blue"
Text {
color: "orange"
text: "Connect to Jellyfin"
}
/*
GridView {
anchors.centerIn: parent
width: parent.width; height: parent.height
2024-08-12 16:53:09 +02:00
2024-08-13 11:26:45 +02:00
model: View.Login {}
delegate: Column {
Text { text: name; anchors.horizontalCenter: parent.horizontalCenter }
}
2024-08-12 16:53:09 +02:00
}
2024-08-13 11:26:45 +02:00
*/
}
2024-08-12 15:14:19 +02:00
}
}