11 lines
130 B
QML
11 lines
130 B
QML
|
import QtQuick 2.9
|
||
|
import QtQuick.Controls 2.4
|
||
|
|
||
|
Page {
|
||
|
id: root
|
||
|
|
||
|
BusyIndicator {
|
||
|
anchors.centerIn: parent
|
||
|
}
|
||
|
}
|