moment/src/gui/LoadingScreen.qml

19 lines
434 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 {
color: utils.hsluv(0, 0, 0, 0.5)
HBusyIndicator {
anchors.centerIn: parent
width: Math.min(160, parent.width - 16, parent.height - 16)
height: width
indeterminateSpan: 0.5
2020-03-13 16:17:47 +11:00
foregroundColor: utils.hsluv(240, 60 / 1.5 * 2, 0, 0.7)
progressColor: utils.hsluv(240, 60 * 1.5, 72)
}
}