Note: You can check the Avalonia docs for the ProgressBar and ProgressBar API if you need more information.
For Avalonia.FuncUI's DSL properties you can check ProgressBar.fs
The ProgressBar control allow for showing dynamic progress status.
ProgressBar.create [
ProgressBar.value 50.
ProgressBar.maximum 100.
// Minimum default value is set to 0
]
ProgressBar.create [
ProgressBar.isIndeterminate true
]