1
0
Fork 0
mirror of https://github.com/HenkKalkwater/harbour-sailfin.git synced 2024-05-16 19:12:43 +00:00
harbour-sailfin/qtquick/qml/components/BusyDialog.qml

11 lines
158 B
QML
Raw Normal View History

2021-03-07 15:26:13 +00:00
import QtQuick 2.12
import QtQuick.Controls 2.12
Dialog {
modal: true
BusyIndicator {
anchors.centerIn: parent
running: true
}
}