Progress Bar
Last updated
Last updated
Type: Custom Component
Instant
bool
If set to true
, progress and indicator values will update instantly without animation.
UpdateFrequency
long
The frequency, in milliseconds
, at which the progress bar updates. Lower values result in more frequent updates, making the animation smoother.
Step
float
The incremental step size used when animating progress or indicator values.
FirstDelay
long
The delay (in milliseconds) before starting the first stage of the progress bar animation.
SecondDelay
long
The delay (in milliseconds) before starting the second stage of the animation (used when updating both progress and indicator values).
CurrentValue
float
The current value of the progress bar.
TargetValue
float
The target value for the progress bar, clamped between 0 and 1. When set, the progress bar animates (or jumps) to this value.
TargetIndicator
float
The target value for the indicator, which tracks progress separately. Also clamped between 0 and 1 and behaves similarly to TargetValue
.
Title
string
The text displayed as the title of the progress bar.
ShowIcon
bool
Toggles the visibility of the icon element at left side of the progress bar.
IconSize
int
Controls the size of the icon in pixels. The width and height of the icon will be set to this value.
VerticalLine
bool
If set to true
, the progress bar will display a vertical line style instead of the default horizontal bar.
ColorBG
UIColor
The background color of the progress bar.
ColorBar
UIColor
The color of the progress bar itself (the filled area).
ColorIndicatorPositive
UIColor
The color used for the progress indicator when the value is increasing.
ColorIndicatorNegative
UIColor
The color used for the progress indicator when the value is decreasing.