CircularProgressIndicator
import { CircularProgressIndicator } from "@material";export component Example inherits Window {    width: 100px;    height: 100px;    background: transparent;    CircularProgressIndicator {        progress: 0.75;        width: 80px;        height: 80px;    }}slint

A CircularProgressIndicator displays progress in a circular form, typically used for loading or processing tasks.
Properties
Section titled “Properties”indeterminate
Section titled “indeterminate”bool default: false
Whether the indicator is in indeterminate mode (shows a looping animation instead of a specific value).
progress
Section titled “progress”float default: 0.0
The progress value, between 0 and 1.
© 2025 SixtyFPS GmbH