Files
webawesome/docs/docs/native/progress.md

602 B

title, description, tags, icon, status, component, elements, file
title description tags icon status component elements file
Progress Bar Progress bars are used to show the status of an ongoing operation. apps progress-bar experimental progress-bar
<progress>
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/progress
styles/native/progress.css
<progress value="40" max="100"></progress>

Indeterminate:

<progress></progress>

Custom Height

Use the height CSS property to set the progress bar's height.

<progress value="50" style="height: 6px;"></progress>