Files
Jellyfin-Freebox/Jellyfin.qml
T
Aurelien Vaillant f53cb56669 WIP more UI wip
2024-08-12 16:53:09 +02:00

20 lines
365 B
QML

import QtQuick 2.5
import fbx.application 1.0
import "Views" 1.0
Application {
Image {
source: "icon.png"
}
Text {
text: "Connect to Jellifyn server"
}
GridView {
model: ViewLogin {}
delegate: Column {
Text { text: name; anchors.horizontalCenter: parent.horizontalCenter }
}
}
}