moment/src/qml/LoadingScreen.qml
2019-08-11 08:34:36 -04:00

13 lines
245 B
QML

import QtQuick 2.12
import "Base"
import "utils.js" as Utils
HRectangle {
color: theme ? theme.controls.box.background : "#0f1222"
Behavior on color { HNumberAnimation {} }
HBusyIndicator {
anchors.centerIn: parent
}
}