Add a login page that appears if no account was configured

This commit is contained in:
Carl Schwan
2020-11-02 15:59:31 +00:00
parent e1c69ee8f4
commit cb99c35e85
6 changed files with 111 additions and 100 deletions

10
qml/LoadingPage.qml Normal file
View File

@@ -0,0 +1,10 @@
import org.kde.kirigami 2.12 as Kirigami
import QtQuick.Controls 2.12 as QQC2
Kirigami.Page {
title: i18n("Loading")
QQC2.BusyIndicator {
anchors.centerIn: parent
}
}