LinearProgressIndicator
import { LinearProgressIndicator } from "@material";export component Example inherits Window {    width: 200px;    height: 40px;    background: transparent;    LinearProgressIndicator {        progress: 0.5;        width: 180px;        height: 8px;    }}slint

A LinearProgressIndicator displays progress along a line, 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