Progress bars and indicators
Provide your users with loading state information using progress bars.
Last updated
Provide your users with loading state information using progress bars.
Last updated
Whenever your application does something that takes a noticeable amount of time, you will want to use a visual element that tells the user that something is happening in the background.
QtQuick Controls provides two useful components that you can use to this end.
is a component that lets you easily include progress bars in your application. There are four main properties you will need to use:
: the minimum value represented by the start of the progress bar
: the maximum value represented by the end of the progress bar
: the current value of the action that is in progress (e.g. 50% loaded)
: if the action that is in process currently has no clear progress value, you can set this property to true
to show the user that something is happening but its progress is not yet clear (but will be soon).
In cases where loading times are shorter or measuring progress is not feasible, you can instead use . This component provides a simple spinning wheel that shows users that something is happening.
If you want the indicator to stop running, you can do so by setting the property to false, in which case the .