Unify look of loading pages

This commit is contained in:
Carl Schwan
2021-10-16 17:59:31 +02:00
parent d42ad85b30
commit a5aafde331

View File

@@ -7,7 +7,13 @@ import org.kde.kirigami 2.12 as Kirigami
Kirigami.Page {
title: i18n("Loading")
QQC2.BusyIndicator {
Kirigami.PlaceholderMessage {
id: loadingIndicator
anchors.centerIn: parent
text: i18n("Loading")
QQC2.BusyIndicator {
running: loadingIndicator.visible
Layout.alignment: Qt.AlignHCenter
}
}
}