This repository has been archived on 2026-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
2018-08-31 14:45:06 +02:00

15 lines
221 B
QML

import QtQuick 2.9
import QtQuick.Controls 2.1
Rectangle {
anchors.fill: parent
color: "#55000000"
visible: shown
property bool shown: false
BusyIndicator {
anchors.centerIn: parent
}
}