React Progress Bar for a Multi-Step Form

preview_player
Показать описание

Learn how to build a React progress bar for a multi-step form. We'll look at the progress element and how to add dynamic values to it with React to provide a progress indicator for a multi-step form.

⭐ Become a full-stack web dev with Zero To Mastery Courses:

👇 Follow Me On Social Media:

React Progress Bar for a Multi-Step Form

(00:00) Intro
(00:14) Welcome
(00:25) Starter Code & Overview
(01:16) App Structure
(02:28) Form Context & Behavior
(04:36) Progress Bar component
(08:57) Check Progress Bar functionality
(09:25) Progress Bar CSS Styles
(14:52) Check Percentage Display
(15:06) Optimization Concerns

📚 Tutorial References:
🔗 ES7 React JS Snippets Extension for VS Code:

🔗 React Dev Tools Extension for Chrome:

📚 General React References:

Was this React Form Progress Bar tutorial helpful? If so, please share. Let me know your thoughts in the comments.

#react #progress #bar
Рекомендации по теме
Комментарии
Автор

I am following your channel to learn things in a new way. It helps me a lot. Please give us an advance tutorial about how to make a full-stack app with NextJS . Thank you

albiummid
Автор

Thanks! again Dave!
are you exploring typescript for React also?

MOJICA
Автор

I always look forward to your tutorials. They help me a lot.
Please keep up the good work.
Thank you!!!

wendelyndike
Автор

Nice video as usual Dave,
Regarding the progress value, we can drop some hardcoded numbers by setting position: relative on the progress itself then applying the following on the progress::after

.progress::after {
content: attr(value);
position: absolute;
display: block;
width: 100%;
top: 0;
line-height: 32px;
text-align: center;
font-weight: bold;
}

Or maybe

.progress::after {
content: attr(value);
position: absolute;
display: grid;
width: 100%;
top: 0;
height: inherit;
place-content: center;
font-weight: bold;
}

Life here is not easy but I always find some time to watch your new videos
Thanks and have a nice day/evening

ahmad-murery
Автор

Dave I think you need to add this.
Calling the form data from API.
Making it dynamic, where I can add any field then it'll show on the multi form

richardwilliam
Автор

I know it will be highly educative as usual, you're the best.

vinceodey
Автор

This is a very comprehensive tutorial. Thanks for a job well done. 👍🏻🎉🎉

AbdulfatahiIshaq
Автор

Dave we are eagerly waiting for REACT + TYPESCRIPT Project base videos, Appreciate all the content on your channel, more practical and very useful, Love you DAVE

regilearn
Автор

Hi Dave ur videos are really helpful. I learned a lot. Dave can u make a table component like it will have sorting functionality, filtering functionality, thn if for example we click on particular column it opens a pop-up there we have multiple values based on th column value if we click checkbox in the table all the items will appear based on the value what we have selected in the checkbox.
It will be very very helpful.

sunnysingh
Автор

Hi Dave, kindly upload a video of Node that how can we can send emails with attachments.

codingseekho
Автор

Hello sir Dave, if you don't mind please create crash course using MERN redux rtk query how to upload an image to cloudinary.... Thank you very much, I didn't find any tutorial from YouTube to achieve that....

ogibinedi
Автор

hey dave Im looking for a recruiter, got anyone in mind ?

hood_love_