Skip to main content

Progress

Progress component renders a horizontal progress bar with customizable thickness, colors, and border radius, animating smoothly according to the provided value prop.

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.
trackColorstringBackground color of the track (unfilled part).
progressColorstringColor of the animated progress (filled part).