ProgressBar(progress: Int, min: Int = DEFAULT_MIN, max: Int = DEFAULT_MAX, style: ProgressBarStyle? = null, striped: Boolean = false, animated: Boolean = false, content: String? = null, rich: Boolean = false, align: Align? = null, classes: Set<String> = setOf(), init: (ProgressBar.() -> Unit)? = null)
progress
- the current progress
style
- the style of the progress bar
striped
- determines if the progress bar is striped
animated
- determines if the progress bar is animated
rich
- determines if content can contain HTML code
classes
- a set of CSS class names
init
- an initializer extension function
Constructor