1# Progress Bar 2 3 4A progress bar displays the speed, time, completion rate, and remaining volume of a task. 5 6 7 8 9 10## How to Use 11 12- Use a progress bar when your users need to wait, for example, for content loading or file transfer through Bluetooth. The loading process or operation progress is displayed so that they can know the task status. 13 14- Generally, use a rectangular bar as the progress bar. 15 16- Design progress bars based on the use scenario. Try to integrate progress bars into the UI content or operation elements to minimize the use of progress bar dialogs, making users feel less complicated. 17 18- In the dialog, if the waiting time is too long, provide a **Hide** button to hide the progress bar and wait the operation to be completed at the background. Display the hidden progress bar in the notification bar. 19 20 21## Writing Instructions 22 23- If the task object and progress are clearly displayed, no text is required. If necessary, the text must be in the following format: operation description + *XX* % 24 25- If the progress is not clear, use the text *Being xx...* 26 27 28## Resources 29 30For details about the development guide related to the progress bar, see [Progress](../../application-dev/reference/arkui-ts/ts-basic-components-progress.md). 31