ProgressBarDeterminate or indeterminate progress on a linear track, with a prominent variant for primary waits.
using eQuantic.UI.Components;
new ProgressBar(_uploaded / (float)_total) { Prominent = true }
Prop
Type
Default
Description
Prominent
bool
false
Thicker track for a page-level operation.
Determinate
The fill animates to the new value over Motion.State
Indeterminate
A looping sweep
Complete
The fill holds; announce completion once
•
Role progressbar with min, max and now. Indeterminate announces "busy" without a value.
•
Operations longer than about a second whose progress is knowable.
•
Fake progress. If you cannot measure it, use an indeterminate indicator.
WARNINGValue, variant and label live on the constructor — read ProgressBar.cs for the exact signature before wiring a custom track.
NOTEEvery dimension resolves through Sizing.*(SizeVariant) and the token scales — never a literal. Source: src/eQuantic.UI.Components/ProgressBar.cs.