1.0.2 • Published 5 years ago
@taishikato/nextjs-progressbar v1.0.2
Next.js Progressbar Without Spinner
A simple Next.js progressbar based on Next.js Progressbar.
How to install?
npm i @taishikato/nextjs-progressbarHow to use?
After installing the package, import this in your pages/_app.js file.
import NextNprogress from '@taishikato/nextjs-progressbar';And for rendering add <NextNProgress /> inside Container component.
Default Config
<NextNprogress
color="#29D"
startPosition={0.3}
stopDelayMs={200}
height="3"
/>color: to change the default color of progressbar. You can also usergb(,,)orrgba(,,,).startPosition: to set the default starting position :0.3 = 30%.stopDelayMs: time for delay to stop progressbar inms.height: height of progressbar inpx.
Advanced Config
You can use other configurations which NProgress provides by adding a JSON in options props.
<NextNprogress
options={{ easing: 'ease', speed: 500 }}
/>