Skip to main content

Progress

 

⚠️ Experimental Component

This component is still being evaluated and may change in future releases.

 

Progress

The Progress component displays a horizontal animated progress bar.

Implementation code

import { Progress } from '@nexara/nativeflow';

const Component = () => {
return (
<Progress value={75} />
);
}

export default Component;

Props

PropTypeDefaultDescription
valuenumber50The progress percentage to display (0–100).
thicknessnumber5Height of the progress bar.
brnumber100Border radius for both track and progress.
trackColorstring'#E8E8E8'Background color of the track (unfilled part).
progressColorstringColor of the animated progress (filled part).