2019-12-19 07:46:16 -04:00
|
|
|
// SPDX-License-Identifier: LGPL-3.0-or-later
|
|
|
|
|
2019-07-21 07:14:16 -04:00
|
|
|
import QtQuick 2.12
|
|
|
|
|
2019-11-06 14:29:32 -04:00
|
|
|
HCircleProgressBar {
|
2020-05-21 19:54:35 -04:00
|
|
|
progress: 0.5
|
|
|
|
|
|
|
|
label.visible: false
|
|
|
|
baseCircle.strokeWidth: 2
|
|
|
|
progressCircle.strokeWidth: 2
|
|
|
|
|
|
|
|
HNumberAnimation on rotation {
|
|
|
|
from: 0
|
|
|
|
to: 360
|
|
|
|
loops: Animation.Infinite
|
|
|
|
duration: theme ? (theme.animationDuration * 6) : 600
|
|
|
|
}
|
2019-07-24 02:14:34 -04:00
|
|
|
}
|