Files
Jellyfin-Freebox/Jellyfin.qml
T

20 lines
365 B
QML
Raw Normal View History

2024-08-12 15:14:19 +02:00
import QtQuick 2.5
import fbx.application 1.0
2024-08-12 16:53:09 +02:00
import "Views" 1.0
2024-08-12 15:14:19 +02:00
Application {
2024-08-12 16:53:09 +02:00
Image {
source: "icon.png"
}
2024-08-12 15:14:19 +02:00
Text {
2024-08-12 16:53:09 +02:00
text: "Connect to Jellifyn server"
}
GridView {
model: ViewLogin {}
delegate: Column {
Text { text: name; anchors.horizontalCenter: parent.horizontalCenter }
}
2024-08-12 15:14:19 +02:00
}
}