mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-05-06 11:39:36 +00:00
19 lines
356 B
QML
19 lines
356 B
QML
import QtQuick 2.15
|
|
import QtQuick.Controls 2.15
|
|
|
|
import "MaterialPalette.qml" as MaterialPalette
|
|
|
|
BusyIndicator {
|
|
id: indicator
|
|
running: true
|
|
width: 48
|
|
height: 48
|
|
anchors.centerIn: parent
|
|
busyIndicatorStyle: BusyIndicatorStyle {
|
|
indicator {
|
|
color: MaterialPalette.primary
|
|
width: 4
|
|
}
|
|
}
|
|
}
|