Interactive Demo
Use the buttons to navigate between steps.
Step of 4
Vertical Layout
Ideal for sidebar progress or complex multi-step forms.
Status Indicators
Highlight errors or warnings within the process.
Usage
@navigation.Stepper(navigation.StepperProps{
CurrentStep: 2,
Vertical: true, // optional vertical mode
}, []navigation.StepProps{
{
Index: 1,
Label: "Step 1",
Description: "Detailed description",
Status: "warning", // optional override
},
{ Index: 2, Label: "Step 2" },
})