mirror of
https://github.com/HenkKalkwater/harbour-sailfin.git
synced 2024-10-31 23:25:18 +00:00
11 lines
158 B
QML
11 lines
158 B
QML
import QtQuick 2.12
|
|
import QtQuick.Controls 2.12
|
|
|
|
Dialog {
|
|
modal: true
|
|
BusyIndicator {
|
|
anchors.centerIn: parent
|
|
running: true
|
|
}
|
|
}
|