Skip to main content
Migrate to Polaris

Version 2025-07 is the last API version to support React-based UI components. Later versions use web components, native UI elements with built-in accessibility, better performance, and consistent styling with Shopify's design system. Check out the migration guide to upgrade your extension.

Progress

Use to visually represent the completion of a task or process.

Support
Targets (50)

Supported targets


Use to visually represent the completion of a task or process.

Anchor to accessibilityLabel
accessibilityLabel
string

A label to use for the Progress that will be used for buyers using assistive technologies like screen readers. It will also be used to replace the animated loading indicator when buyers prefer reduced motion.

string

A unique identifier for the component.

number
Default: 1

Define the maximum limit of the progress element. It must have a value greater than 0 and be a valid floating point number.

Default: 'auto'

Set the color of the progress bar.

Anchor to value
value
number

Specify how much of the task that has been completed. It must be a valid floating point number between 0 and max, or between 0 and 1 if max is omitted. When undefined, the progress bar is indeterminate; this indicates that an activity is ongoing with no indication of how long it is expected to take.


Indeterminate state

Example

Indeterminate state

import {
reactExtension,
Progress,
} from '@shopify/ui-extensions-react/checkout';

export default reactExtension(
'purchase.checkout.block.render',
() => <Extension />,
);

function Extension() {
return (
<Progress accessibilityLabel="Loading" />
);
}
import {extension, Progress} from '@shopify/ui-extensions/checkout';

export default extension('purchase.checkout.block.render', (root) => {
const baseProgress = root.createComponent(Progress, {
accessibilityLabel: 'Loading',
});

root.appendChild(baseProgress);
});

In a determinate state, TextBlock or Text components can be used to communicate what the progress bar is tracking, and to set clear expectations about the current progress.

Determinate state

A determinate progress bar showing progress toward a goal with point counts and a description.

Determinate state

import {
reactExtension,
BlockStack,
Grid,
Progress,
Text,
TextBlock,
} from '@shopify/ui-extensions-react/checkout';

export default reactExtension(
'purchase.checkout.footer.render-after',
() => <Extension />,
);

function Extension() {
const label = 'Queue process';
return (
<BlockStack>
<Grid columns={['fill', 'auto']}>
<Text>{label}</Text>
<Text appearance="subdued">
45% completed
</Text>
</Grid>
<Progress
value={45}
max={100}
accessibilityLabel={label}
/>
<TextBlock appearance="subdued">
Estimated wait time: 4 minutes
</TextBlock>
</BlockStack>
);
}
import {
extension,
BlockStack,
Grid,
Progress,
Text,
TextBlock,
} from '@shopify/ui-extensions/checkout';

export default extension(
'purchase.checkout.block.render',
(root) => {
const label = 'Queue process';

const progress = root.createComponent(
BlockStack,
null,
[
root.createComponent(
Grid,
{
columns: ['fill', 'auto'],
},
[
root.createComponent(
Text,
null,
label,
),
root.createComponent(
Text,
{
appearance: 'subdued',
},
'45% completed',
),
],
),
root.createComponent(Progress, {
value: 45,
max: 100,
accessibilityLabel: label,
}),
root.createComponent(
TextBlock,
{
appearance: 'subdued',
},
'Estimated wait time: 4 minutes',
),
],
);

root.appendChild(progress);
},
);

Use components like TextBlock or Text, along with the Progress component, to display text indicating the status of the progress bar.

For loading states, add text to reassure the buyer that the progress bar is not frozen.

A progress bar with 'Loading' text

For error states, add text or a Banner to describe the error and next steps. Use the critical tone property to convey urgency.

A progress bar with error text that says 'There was a problem with the file upload. Please try again.'

Use the Progress component to visualize a goal that's valuable to the buyer.

Here's an example of using a progress bar to show a buyer's progress toward the next rewards tier:

A progress bar showing that the buyer is on their way to reaching the next rewards tier.

Here's an example of using a progress bar to show how much more a buyer needs to spend to get free shipping:

A progress bar at checkout, showing that the buyer is $43 away from free shipping.


Was this page helpful?