moment/src/gui/LoadingScreen.qml

25 lines
662 B
QML
Raw Normal View History

2019-12-19 22:46:16 +11:00
// SPDX-License-Identifier: LGPL-3.0-or-later
import QtQuick 2.12
import "Base"
2020-03-13 16:17:47 +11:00
Rectangle {
2020-05-22 09:54:35 +10:00
color: utils.hsluv(0, 0, 0, 0.7)
HBusyIndicator {
anchors.centerIn: parent
width: Math.min(160, parent.width - 16, parent.height - 16)
height: width
2020-05-22 09:54:35 +10:00
// Because the theme is not loaded at this point, we must set these
// properties manually:
baseCircle.strokeColor: utils.hsluv(240, 60 / 1.5 * 2, 0, 0.7)
progressCircle.strokeColor: utils.hsluv(240, 60 * 1.5, 72)
label.font.family: "Roboto"
label.font.pixelSize: 0
label.color: "black"
label.linkColor: "black"
}
}