mirror of
https://github.com/HenkKalkwater/harbour-sailfin.git
synced 2024-11-13 04:55:17 +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
|
|
}
|
|
}
|