Progress
Displays an indicator showing the completion progress of a task.
Basic
A basic progress bar.
<Progress Value="33" />
<Progress Value="66" />
<Progress Value="100" />Animated
Progress bar with animated value.
Value: 25%
<Progress Value="@progressValue" />
@code {
private int progressValue = 25;
}