Skip to content

CircularProgressIndicator

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

A CircularProgressIndicator displays progress in a circular form, typically used for loading or processing tasks.

bool default: false

Whether the indicator is in indeterminate mode (shows a looping animation instead of a specific value).

float default: 0.0

The progress value, between 0 and 1.


© 2025 SixtyFPS GmbH