1
0
Fork 0
mirror of https://github.com/HenkKalkwater/harbour-sailfin.git synced 2024-05-15 18:42:43 +00:00
harbour-sailfin/qtquick/qml/pages/setup/ServerSelectPage.qml

25 lines
462 B
QML

import QtQuick 2.12
import QtQuick.Controls 2.12
import nl.netsoj.chris.Jellyfin 1.0
import "../../../SailfinStyle"
Page {
header: ToolBar {
Label {
anchors.horizontalCenter: parent.horizontalCenter
font.pixelSize: SailfinStyle.fontSizeLarge
text: qsTr("Select a server")
}
}
BusyIndicator {
anchors.centerIn: parent
}
ServerDiscoveryModel {
id: discoveryModel
}
}