LinearProgress
Progress indicators inform users about the status of ongoing processes, such as loading an app, submitting a form, or saving updates.
They communicate an app’s state and indicate available actions, such as whether users can navigate away from the current screen.
Also receives all View props
#
Usage#
Props#
LinearProgress#
Reference#
LinearProgress#
animationAnimation duration
Type | Default |
---|---|
boolean or { duration?: number; } | { duration: 2000 } |
#
colorColor for linear progress.
Type | Default |
---|---|
string | secondary |
#
styleAdd additional styling for linear progress component.
Type | Default |
---|---|
View style(Object) | None |
#
trackColorTrack color for linear progress.
Type | Default |
---|---|
string | None |
#
valueThe value of the progress indicator for the determinate variant. Value between 0 and 1.
Type | Default |
---|---|
number | None |
#
variantType of button.
Type | Default |
---|---|
"determinate" or "indeterminate" | value === undefined ? 'indeterminate' : 'determinate' |